From f09e81ff5263da2342a41ed24a428b1e0ef7d851 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Wed, 7 Apr 2010 07:17:05 -0400 Subject: [PATCH 01/80] Made it so that settag would list tags. Very useful to be able to know what tags a site already has. --- scripts/settag.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/settag.php b/scripts/settag.php index e91d5eb505..d1b06ff100 100644 --- a/scripts/settag.php +++ b/scripts/settag.php @@ -33,13 +33,12 @@ END_OF_SETTAG_HELP; require_once INSTALLDIR.'/scripts/commandline.inc'; -if (count($args) != 2) { +if (count($args) < 1) { show_help(); exit(1); } $nickname = $args[0]; -$tag = strtolower($args[1]); $sn = Status_network::memGet('nickname', $nickname); @@ -50,6 +49,12 @@ if (empty($sn)) { $tags = $sn->getTags(); +if (count($args) == 1) { + print(implode(', ', $tags) . "\n"); + exit(0); +} +$tag = $args[1]; + $i = array_search($tag, $tags); if ($i !== false) { From aceaeb99e5fa451fcfb2ac444443f17c09a4908c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 7 Apr 2010 11:40:16 -0700 Subject: [PATCH 02/80] fixup_blocks.php: finds any stray subscriptions in violation of blocks, and removes them. --- scripts/fixup_blocks.php | 76 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100755 scripts/fixup_blocks.php diff --git a/scripts/fixup_blocks.php b/scripts/fixup_blocks.php new file mode 100755 index 0000000000..6b0255e720 --- /dev/null +++ b/scripts/fixup_blocks.php @@ -0,0 +1,76 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$longoptions = array('dry-run', 'start=', 'end='); + +$helptext = <<query($query); + return $subscription; +} + + +$dry = have_option('dry-run'); +$sub = get_blocked_subs(); +$count = $sub->N; +while ($sub->fetch()) { + $subber = Profile::staticGet('id', $sub->subscriber); + $subbed = Profile::staticGet('id', $sub->subscribed); + if (!$subber || !$subbed) { + print "Bogus entry! $sub->subscriber subbed to $sub->subscribed\n"; + continue; + } + print "$subber->nickname ($subber->id) blocked but subbed to $subbed->nickname ($subbed->id)"; + if ($dry) { + print ": skipping; dry run\n"; + } else { + Subscription::cancel($subber, $subbed); + print ": removed\n"; + } +} +print "\n"; + +if ($dry && $count > 0) { + print "Be sure to run without --dry-run to remove the bad entries!\n"; +} else { + print "done.\n"; +} From f255b368edc06db8af57f7ad4d13542a126c42bc Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 7 Apr 2010 17:47:08 -0700 Subject: [PATCH 03/80] Refactor installer into base class plus web and CLI installers. scripts/install_cli.php is a bit experimental at present but works. --- install.php | 1046 ++++++++------------------------------- lib/installer.php | 578 +++++++++++++++++++++ scripts/install_cli.php | 217 ++++++++ 3 files changed, 1002 insertions(+), 839 deletions(-) create mode 100644 lib/installer.php create mode 100755 scripts/install_cli.php diff --git a/install.php b/install.php index 8a299f8975..08555d19b9 100644 --- a/install.php +++ b/install.php @@ -1,8 +1,7 @@ - 'gettext', - 'url'=>'http://us.php.net/manual/en/book.gettext.php', - 'check_function'=>'gettext' - ), - array( - 'name'=>'PEAR', - 'url'=>'http://pear.php.net/', - 'deb'=>'php-pear', - 'include'=>'PEAR.php', - 'check_class'=>'PEAR' - ), - array( - 'name'=>'DB', - 'pear'=>'DB', - 'url'=>'http://pear.php.net/package/DB', - 'deb'=>'php-db', - 'include'=>'DB/common.php', - 'check_class'=>'DB_common' - ), - array( - 'name'=>'DB_DataObject', - 'pear'=>'DB_DataObject', - 'url'=>'http://pear.php.net/package/DB_DataObject', - 'include'=>'DB/DataObject.php', - 'check_class'=>'DB_DataObject' - ), - array( - 'name'=>'Console_Getopt', - 'pear'=>'Console_Getopt', - 'url'=>'http://pear.php.net/package/Console_Getopt', - 'include'=>'Console/Getopt.php', - 'check_class'=>'Console_Getopt' - ), - array( - 'name'=>'Facebook API', - 'url'=>'http://developers.facebook.com/', - 'include'=>'facebook/facebook.php', - 'check_class'=>'Facebook' - ), - array( - 'name'=>'htmLawed', - 'url'=>'http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed', - 'include'=>'htmLawed/htmLawed.php', - 'check_function'=>'htmLawed' - ), - array( - 'name'=>'HTTP_Request', - 'pear'=>'HTTP_Request', - 'url'=>'http://pear.php.net/package/HTTP_Request', - 'deb'=>'php-http-request', - 'include'=>'HTTP/Request.php', - 'check_class'=>'HTTP_Request' - ), - array( - 'name'=>'HTTP_Request2', - 'pear'=>'HTTP_Request2', - 'url'=>'http://pear.php.net/package/HTTP_Request2', - 'include'=>'HTTP/Request2.php', - 'check_class'=>'HTTP_Request2' - ), - array( - 'name'=>'Mail', - 'pear'=>'Mail', - 'url'=>'http://pear.php.net/package/Mail', - 'deb'=>'php-mail', - 'include'=>'Mail.php', - 'check_class'=>'Mail' - ), - array( - 'name'=>'Mail_mimeDecode', - 'pear'=>'Mail_mimeDecode', - 'url'=>'http://pear.php.net/package/Mail_mimeDecode', - 'deb'=>'php-mail-mimedecode', - 'include'=>'Mail/mimeDecode.php', - 'check_class'=>'Mail_mimeDecode' - ), - array( - 'name'=>'Mime_Type', - 'pear'=>'Mime_Type', - 'url'=>'http://pear.php.net/package/Mime_Type', - 'include'=>'MIME/Type.php', - 'check_class'=>'Mime_Type' - ), - array( - 'name'=>'Net_URL_Mapper', - 'pear'=>'Net_URL_Mapper', - 'url'=>'http://pear.php.net/package/Net_URL_Mapper', - 'include'=>'Net/URL/Mapper.php', - 'check_class'=>'Net_URL_Mapper' - ), - array( - 'name'=>'Net_LDAP2', - 'pear'=>'Net_LDAP2', - 'url'=>'http://pear.php.net/package/Net_LDAP2', - 'deb'=>'php-net-ldap2', - 'include'=>'Net/LDAP2.php', - 'check_class'=>'Net_LDAP2' - ), - array( - 'name'=>'Net_Socket', - 'pear'=>'Net_Socket', - 'url'=>'http://pear.php.net/package/Net_Socket', - 'deb'=>'php-net-socket', - 'include'=>'Net/Socket.php', - 'check_class'=>'Net_Socket' - ), - array( - 'name'=>'Net_SMTP', - 'pear'=>'Net_SMTP', - 'url'=>'http://pear.php.net/package/Net_SMTP', - 'deb'=>'php-net-smtp', - 'include'=>'Net/SMTP.php', - 'check_class'=>'Net_SMTP' - ), - array( - 'name'=>'Net_URL', - 'pear'=>'Net_URL', - 'url'=>'http://pear.php.net/package/Net_URL', - 'deb'=>'php-net-url', - 'include'=>'Net/URL.php', - 'check_class'=>'Net_URL' - ), - array( - 'name'=>'Net_URL2', - 'pear'=>'Net_URL2', - 'url'=>'http://pear.php.net/package/Net_URL2', - 'include'=>'Net/URL2.php', - 'check_class'=>'Net_URL2' - ), - array( - 'name'=>'Services_oEmbed', - 'pear'=>'Services_oEmbed', - 'url'=>'http://pear.php.net/package/Services_oEmbed', - 'include'=>'Services/oEmbed.php', - 'check_class'=>'Services_oEmbed' - ), - array( - 'name'=>'Stomp', - 'url'=>'http://stomp.codehaus.org/PHP', - 'include'=>'Stomp.php', - 'check_class'=>'Stomp' - ), - array( - 'name'=>'System_Command', - 'pear'=>'System_Command', - 'url'=>'http://pear.php.net/package/System_Command', - 'include'=>'System/Command.php', - 'check_class'=>'System_Command' - ), - array( - 'name'=>'XMPPHP', - 'url'=>'http://code.google.com/p/xmpphp', - 'include'=>'XMPPHP/XMPP.php', - 'check_class'=>'XMPPHP_XMPP' - ), - array( - 'name'=>'PHP Markdown', - 'url'=>'http://www.michelf.com/projects/php-markdown/', - 'include'=>'markdown.php', - 'check_class'=>'Markdown_Parser' - ), - array( - 'name'=>'OAuth', - 'url'=>'http://code.google.com/p/oauth-php', - 'include'=>'OAuth.php', - 'check_class'=>'OAuthRequest' - ), - array( - 'name'=>'Validate', - 'pear'=>'Validate', - 'url'=>'http://pear.php.net/package/Validate', - 'include'=>'Validate.php', - 'check_class'=>'Validate' - ) -); -$dbModules = array( - 'mysql' => array( - 'name' => 'MySQL', - 'check_module' => 'mysql', // mysqli? - 'installer' => 'mysql_db_installer', - ), - 'pgsql' => array( - 'name' => 'PostgreSQL', - 'check_module' => 'pgsql', - 'installer' => 'pgsql_db_installer', - ), -); - -/** - * the actual installation. - * If call libraries are present, then install - * - * @return void - */ -function main() -{ - if (!checkPrereqs()) { - return; - } - - if (!empty($_GET['checklibs'])) { - showLibs(); - } else { - if ($_SERVER['REQUEST_METHOD'] == 'POST') { - handlePost(); - } else { - showForm(); - } - } -} - -/** - * checks if an external libary is present - * - * @param string $external_library Name of library - * - * @return boolean indicates if library present - */ -function haveExternalLibrary($external_library) -{ - if (isset($external_library['include']) && !haveIncludeFile($external_library['include'])) { - return false; - } - if (isset($external_library['check_function']) && ! function_exists($external_library['check_function'])) { - return false; - } - if (isset($external_library['check_class']) && ! class_exists($external_library['check_class'])) { - return false; - } - return true; -} - -// Attempt to include a PHP file and report if it worked, while -// suppressing the annoying warning messages on failure. -function haveIncludeFile($filename) { - $old = error_reporting(error_reporting() & ~E_WARNING); - $ok = include_once($filename); - error_reporting($old); - return $ok; -} - -/** - * Check if all is ready for installation - * - * @return void - */ -function checkPrereqs() -{ - $pass = true; - - if (file_exists(INSTALLDIR.'/config.php')) { - printf('

Config file "config.php" already exists.

'); - $pass = false; - } - - if (version_compare(PHP_VERSION, '5.2.3', '<')) { - printf('

Require PHP version 5.2.3 or greater.

'); - $pass = false; - } - - // Look for known library bugs - $str = "abcdefghijklmnopqrstuvwxyz"; - $replaced = preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str); - if ($str != $replaced) { - printf('

PHP is linked to a version of the PCRE library ' . - 'that does not support Unicode properties. ' . - 'If you are running Red Hat Enterprise Linux / ' . - 'CentOS 5.4 or earlier, see our documentation page on fixing this.

'); - $pass = false; - } - - $reqs = array('gd', 'curl', - 'xmlwriter', 'mbstring', 'xml', 'dom', 'simplexml'); - - foreach ($reqs as $req) { - if (!checkExtension($req)) { - printf('

Cannot load required extension: %s

', $req); - $pass = false; - } - } - // Make sure we have at least one database module available - global $dbModules; - $missingExtensions = array(); - foreach ($dbModules as $type => $info) { - if (!checkExtension($info['check_module'])) { - $missingExtensions[] = $info['check_module']; - } - } - - if (count($missingExtensions) == count($dbModules)) { - $req = implode(', ', $missingExtensions); - printf('

Cannot find mysql or pgsql extension. You need one or the other.'); - $pass = false; - } - - if (!is_writable(INSTALLDIR)) { - printf('

Cannot write config file to: %s

', INSTALLDIR); - printf('

On your server, try this command: chmod a+w %s', INSTALLDIR); - $pass = false; - } - - // Check the subdirs used for file uploads - $fileSubdirs = array('avatar', 'background', 'file'); - foreach ($fileSubdirs as $fileSubdir) { - $fileFullPath = INSTALLDIR."/$fileSubdir/"; - if (!is_writable($fileFullPath)) { - printf('

Cannot write to %s directory: %s

', $fileSubdir, $fileFullPath); - printf('

On your server, try this command: chmod a+w %s

', $fileFullPath); - $pass = false; - } - } - - return $pass; -} - -/** - * Checks if a php extension is both installed and loaded - * - * @param string $name of extension to check - * - * @return boolean whether extension is installed and loaded - */ -function checkExtension($name) -{ - if (extension_loaded($name)) { - return true; - } elseif (function_exists('dl') && ini_get('enable_dl') && !ini_get('safe_mode')) { - // dl will throw a fatal error if it's disabled or we're in safe mode. - // More fun, it may not even exist under some SAPIs in 5.3.0 or later... - $soname = $name . '.' . PHP_SHLIB_SUFFIX; - if (PHP_SHLIB_SUFFIX == 'dll') { - $soname = "php_" . $soname; - } - return @dl($soname); - } else { - return false; - } -} - -/** - * Show list of libraries - * - * @return void - */ -function showLibs() -{ - global $external_libraries; - $present_libraries=array(); - $absent_libraries=array(); - foreach ($external_libraries as $external_library) { - if (haveExternalLibrary($external_library)) { - $present_libraries[]=$external_library; - } else { - $absent_libraries[]=$external_library; - } - } - echo<< -

StatusNet comes bundled with a number of libraries required for the application to work. However, it is best that you use PEAR or you distribution to manage - libraries instead, as they tend to provide security updates faster, and may offer improved performance.

-

On Debian based distributions, such as Ubuntu, use a package manager (such as "aptitude", "apt-get", and "synaptic") to install the package listed.

-

On RPM based distributions, such as Red Hat, Fedora, CentOS, Scientific Linux, Yellow Dog Linux and Oracle Enterprise Linux, use a package manager (such as "yum", "apt-rpm", and "up2date") to install the package listed.

-

On servers without a package manager (such as Windows), or if the library is not packaged for your distribution, you can use PHP's PEAR to install the library. Simply run "pear install <name>".

- -

Absent Libraries

-
    -E_O_T; - foreach ($absent_libraries as $library) { - echo '
  • '; - if (isset($library['url'])) { - echo ''.htmlentities($library['name']).''; - } else { - echo htmlentities($library['name']); - } - echo '
      '; - if (isset($library['deb'])) { - echo '
    • deb: ' . htmlentities($library['deb']) . '
    • '; - } - if (isset($library['rpm'])) { - echo '
    • rpm: ' . htmlentities($library['rpm']) . '
    • '; - } - if (isset($library['pear'])) { - echo '
    • pear: ' . htmlentities($library['pear']) . '
    • '; - } - echo '
    '; - } - echo<< -

    Installed Libraries

    -
      -E_O_T; - foreach ($present_libraries as $library) { - echo '
    • '; - if (isset($library['url'])) { - echo ''.htmlentities($library['name']).''; - } else { - echo htmlentities($library['name']); - } - echo '
    • '; - } - echo<< -E_O_T; -} +require INSTALLDIR . '/lib/installer.php'; /** * Helper class for building form @@ -462,457 +54,230 @@ class Posted { } } -function showForm() +/** + * Web-based installer: provides a form and such. + */ +class WebInstaller extends Installer { - global $dbModules; - $post = new Posted(); - $dbRadios = ''; - if (isset($_POST['dbtype'])) { - $dbtype = $_POST['dbtype']; - } else { - $dbtype = null; - } - foreach ($dbModules as $type => $info) { - if (checkExtension($info['check_module'])) { - if ($dbtype == null || $dbtype == $type) { - $checked = 'checked="checked" '; - $dbtype = $type; // if we didn't have one checked, hit the first - } else { - $checked = ''; - } - $dbRadios .= " $info[name]
      \n"; + /** + * the actual installation. + * If call libraries are present, then install + * + * @return void + */ + function main() + { + if (!$this->checkPrereqs()) { + $this->showForm(); + return; + } + + if ($_SERVER['REQUEST_METHOD'] == 'POST') { + $this->handlePost(); + } else { + $this->showForm(); } } - echo<< - - -
      -
      -
      - Site settings -
        -
      • - - -

        The name of your site

        -
      • -
      • - - enable
        - disable
        -

        Enable fancy (pretty) URLs. Auto-detection failed, it depends on Javascript.

        -
      • -
      -
      + /** + * Web implementation of warning output + */ + function warning($message, $submessage='') + { + print "

      $message

      \n"; + if ($submessage != '') { + print "

      $submessage

      \n"; + } + } -
      - Database settings -
        -
      • - - -

        Database hostname

        -
      • -
      • - - $dbRadios -

        Database type

        -
      • -
      • - - -

        Database name

        -
      • -
      • - - -

        Database username

        -
      • -
      • - - -

        Database password (optional)

        -
      • -
      -
      + /** + * Web implementation of status output + */ + function updateStatus($status, $error=false) + { + echo '$status"; + } -
      - Administrator settings -
        -
      • - - -

        Nickname for the initial StatusNet user (administrator)

        -
      • -
      • - - -

        Password for the initial StatusNet user (administrator)

        -
      • -
      • - - -
      • -
      • - - -

        Optional email address for the initial StatusNet user (administrator)

        -
      • -
      • - - -

        Release and security feed from update@status.net (recommended)

        -
      • -
      + /** + * Show the web form! + */ + function showForm() + { + global $dbModules; + $post = new Posted(); + $dbRadios = ''; + if (isset($_POST['dbtype'])) { + $dbtype = $_POST['dbtype']; + } else { + $dbtype = null; + } + foreach (self::$dbModules as $type => $info) { + if ($this->checkExtension($info['check_module'])) { + if ($dbtype == null || $dbtype == $type) { + $checked = 'checked="checked" '; + $dbtype = $type; // if we didn't have one checked, hit the first + } else { + $checked = ''; + } + $dbRadios .= " $info[name]
      \n"; + } + } + + echo<< +
      +
      + Site settings +
        +
      • + + +

        The name of your site

        +
      • +
      • + + enable
        + disable
        +

        Enable fancy (pretty) URLs. Auto-detection failed, it depends on Javascript.

        +
      • +
      +
      + +
      + Database settings +
        +
      • + + +

        Database hostname

        +
      • +
      • + + $dbRadios +

        Database type

        +
      • +
      • + + +

        Database name

        +
      • +
      • + + +

        Database username

        +
      • +
      • + + +

        Database password (optional)

        +
      • +
      +
      + +
      + Administrator settings +
        +
      • + + +

        Nickname for the initial StatusNet user (administrator)

        +
      • +
      • + + +

        Password for the initial StatusNet user (administrator)

        +
      • +
      • + + +
      • +
      • + + +

        Optional email address for the initial StatusNet user (administrator)

        +
      • +
      • + + +

        Release and security feed from update@status.net (recommended)

        +
      • +
      +
      +
      - -
      - + E_O_T; -} + } -function updateStatus($status, $error=false) -{ - echo '$status"; -} - -function handlePost() -{ - $host = $_POST['host']; - $dbtype = $_POST['dbtype']; - $database = $_POST['database']; - $username = $_POST['dbusername']; - $password = $_POST['dbpassword']; - $sitename = $_POST['sitename']; - $fancy = !empty($_POST['fancy']); - - $adminNick = strtolower($_POST['admin_nickname']); - $adminPass = $_POST['admin_password']; - $adminPass2 = $_POST['admin_password2']; - $adminEmail = $_POST['admin_email']; - $adminUpdates = $_POST['admin_updates']; - - $server = $_SERVER['HTTP_HOST']; - $path = substr(dirname($_SERVER['PHP_SELF']), 1); - - echo << -
      Page notice
      -
      -
        + /** + * Handle a POST submission... if we have valid input, start the install! + * Otherwise shows the form along with any error messages. + */ + function handlePost() + { + echo << +
        Page notice
        +
        +
          STR; - $fail = false; - - if (empty($host)) { - updateStatus("No hostname specified.", true); - $fail = true; - } - - if (empty($database)) { - updateStatus("No database specified.", true); - $fail = true; - } - - if (empty($username)) { - updateStatus("No username specified.", true); - $fail = true; - } - - if (empty($sitename)) { - updateStatus("No sitename specified.", true); - $fail = true; - } - - if (empty($adminNick)) { - updateStatus("No initial StatusNet user nickname specified.", true); - $fail = true; - } - if ($adminNick && !preg_match('/^[0-9a-z]{1,64}$/', $adminNick)) { - updateStatus('The user nickname "' . htmlspecialchars($adminNick) . - '" is invalid; should be plain letters and numbers no longer than 64 characters.', true); - $fail = true; - } - // @fixme hardcoded list; should use User::allowed_nickname() - // if/when it's safe to have loaded the infrastructure here - $blacklist = array('main', 'admin', 'twitter', 'settings', 'rsd.xml', 'favorited', 'featured', 'favoritedrss', 'featuredrss', 'rss', 'getfile', 'api', 'groups', 'group', 'peopletag', 'tag', 'user', 'message', 'conversation', 'bookmarklet', 'notice', 'attachment', 'search', 'index.php', 'doc', 'opensearch', 'robots.txt', 'xd_receiver.html', 'facebook'); - if (in_array($adminNick, $blacklist)) { - updateStatus('The user nickname "' . htmlspecialchars($adminNick) . - '" is reserved.', true); - $fail = true; - } - - if (empty($adminPass)) { - updateStatus("No initial StatusNet user password specified.", true); - $fail = true; - } - - if ($adminPass != $adminPass2) { - updateStatus("Administrator passwords do not match. Did you mistype?", true); - $fail = true; - } - - if ($fail) { - showForm(); - return; - } - - global $dbModules; - $db = call_user_func($dbModules[$dbtype]['installer'], $host, $database, $username, $password); - - if (!$db) { - // database connection failed, do not move on to create config file. - return false; - } - - updateStatus("Writing config file..."); - $res = writeConf($sitename, $server, $path, $fancy, $db); - - if (!$res) { - updateStatus("Can't write config file.", true); - showForm(); - return; - } - - // Okay, cross fingers and try to register an initial user - if (registerInitialUser($adminNick, $adminPass, $adminEmail, $adminUpdates)) { - updateStatus( - "An initial user with the administrator role has been created." - ); - } else { - updateStatus( - "Could not create initial StatusNet user (administrator).", - true - ); - showForm(); - return; - } - - /* - TODO https needs to be considered - */ - $link = "http://".$server.'/'.$path; - - updateStatus("StatusNet has been installed at $link"); - updateStatus( - "DONE! You can visit your new StatusNet site (login as '$adminNick'). If this is your first StatusNet install, you may want to poke around our Getting Started guide." - ); -} - -function Pgsql_Db_installer($host, $database, $username, $password) -{ - $connstring = "dbname=$database host=$host user=$username"; - - //No password would mean trust authentication used. - if (!empty($password)) { - $connstring .= " password=$password"; - } - updateStatus("Starting installation..."); - updateStatus("Checking database..."); - $conn = pg_connect($connstring); - - if ($conn ===false) { - updateStatus("Failed to connect to database: $connstring"); - showForm(); - return false; - } - - //ensure database encoding is UTF8 - $record = pg_fetch_object(pg_query($conn, 'SHOW server_encoding')); - if ($record->server_encoding != 'UTF8') { - updateStatus("StatusNet requires UTF8 character encoding. Your database is ". htmlentities($record->server_encoding)); - showForm(); - return false; - } - - updateStatus("Running database script..."); - //wrap in transaction; - pg_query($conn, 'BEGIN'); - $res = runDbScript(INSTALLDIR.'/db/statusnet_pg.sql', $conn, 'pgsql'); - - if ($res === false) { - updateStatus("Can't run database script.", true); - showForm(); - return false; - } - foreach (array('sms_carrier' => 'SMS carrier', - 'notice_source' => 'notice source', - 'foreign_services' => 'foreign service') - as $scr => $name) { - updateStatus(sprintf("Adding %s data to database...", $name)); - $res = runDbScript(INSTALLDIR.'/db/'.$scr.'.sql', $conn, 'pgsql'); - if ($res === false) { - updateStatus(sprintf("Can't run %d script.", $name), true); - showForm(); - return false; + $this->validated = $this->prepare(); + if ($this->validated) { + $this->doInstall(); } - } - pg_query($conn, 'COMMIT'); - - if (empty($password)) { - $sqlUrl = "pgsql://$username@$host/$database"; - } else { - $sqlUrl = "pgsql://$username:$password@$host/$database"; - } - - $db = array('type' => 'pgsql', 'database' => $sqlUrl); - - return $db; -} - -function Mysql_Db_installer($host, $database, $username, $password) -{ - updateStatus("Starting installation..."); - updateStatus("Checking database..."); - - $conn = mysql_connect($host, $username, $password); - if (!$conn) { - updateStatus("Can't connect to server '$host' as '$username'.", true); - showForm(); - return false; - } - updateStatus("Changing to database..."); - $res = mysql_select_db($database, $conn); - if (!$res) { - updateStatus("Can't change to database.", true); - showForm(); - return false; - } - updateStatus("Running database script..."); - $res = runDbScript(INSTALLDIR.'/db/statusnet.sql', $conn); - if ($res === false) { - updateStatus("Can't run database script.", true); - showForm(); - return false; - } - foreach (array('sms_carrier' => 'SMS carrier', - 'notice_source' => 'notice source', - 'foreign_services' => 'foreign service') - as $scr => $name) { - updateStatus(sprintf("Adding %s data to database...", $name)); - $res = runDbScript(INSTALLDIR.'/db/'.$scr.'.sql', $conn); - if ($res === false) { - updateStatus(sprintf("Can't run %d script.", $name), true); - showForm(); - return false; + echo << +
        + +STR; + if (!$this->validated) { + $this->showForm(); } } - $sqlUrl = "mysqli://$username:$password@$host/$database"; - $db = array('type' => 'mysql', 'database' => $sqlUrl); - return $db; -} + /** + * Read and validate input data. + * May output side effects. + * + * @return boolean success + */ + function prepare() + { + $this->host = $_POST['host']; + $this->dbtype = $_POST['dbtype']; + $this->database = $_POST['database']; + $this->username = $_POST['dbusername']; + $this->password = $_POST['dbpassword']; + $this->sitename = $_POST['sitename']; + $this->fancy = !empty($_POST['fancy']); -function writeConf($sitename, $server, $path, $fancy, $db) -{ - // assemble configuration file in a string - $cfg = "adminNick = strtolower($_POST['admin_nickname']); + $this->adminPass = $_POST['admin_password']; + $adminPass2 = $_POST['admin_password2']; + $this->adminEmail = $_POST['admin_email']; + $this->adminUpdates = $_POST['admin_updates']; - // site name - "\$config['site']['name'] = '$sitename';\n\n". + $this->server = $_SERVER['HTTP_HOST']; + $this->path = substr(dirname($_SERVER['PHP_SELF']), 1); - // site location - "\$config['site']['server'] = '$server';\n". - "\$config['site']['path'] = '$path'; \n\n". - - // checks if fancy URLs are enabled - ($fancy ? "\$config['site']['fancy'] = true;\n\n":''). - - // database - "\$config['db']['database'] = '{$db['database']}';\n\n". - ($db['type'] == 'pgsql' ? "\$config['db']['quote_identifiers'] = true;\n\n":''). - "\$config['db']['type'] = '{$db['type']}';\n\n"; - // write configuration file out to install directory - $res = file_put_contents(INSTALLDIR.'/config.php', $cfg); - - return $res; -} - -/** - * Install schema into the database - * - * @param string $filename location of database schema file - * @param dbconn $conn connection to database - * @param string $type type of database, currently mysql or pgsql - * - * @return boolean - indicating success or failure - */ -function runDbScript($filename, $conn, $type = 'mysqli') -{ - $sql = trim(file_get_contents($filename)); - $stmts = explode(';', $sql); - foreach ($stmts as $stmt) { - $stmt = trim($stmt); - if (!mb_strlen($stmt)) { - continue; + $fail = false; + if (!$this->validateDb()) { + $fail = true; } - // FIXME: use PEAR::DB or PDO instead of our own switch - switch ($type) { - case 'mysqli': - $res = mysql_query($stmt, $conn); - if ($res === false) { - $error = mysql_error(); - } - break; - case 'pgsql': - $res = pg_query($conn, $stmt); - if ($res === false) { - $error = pg_last_error(); - } - break; - default: - updateStatus("runDbScript() error: unknown database type ". $type ." provided."); + + if (!$this->validateAdmin()) { + $fail = true; } - if ($res === false) { - updateStatus("ERROR ($error) for SQL '$stmt'"); - return $res; + + if ($this->adminPass != $adminPass2) { + $this->updateStatus("Administrator passwords do not match. Did you mistype?", true); + $fail = true; } - } - return true; -} - -function registerInitialUser($nickname, $password, $email, $adminUpdates) -{ - define('STATUSNET', true); - define('LACONICA', true); // compatibility - - require_once INSTALLDIR . '/lib/common.php'; - - $data = array('nickname' => $nickname, - 'password' => $password, - 'fullname' => $nickname); - if ($email) { - $data['email'] = $email; - } - $user = User::register($data); - - if (empty($user)) { - return false; + + return !$fail; } - // give initial user carte blanche - - $user->grantRole('owner'); - $user->grantRole('moderator'); - $user->grantRole('administrator'); - - // Attempt to do a remote subscribe to update@status.net - // Will fail if instance is on a private network. - - if (class_exists('Ostatus_profile') && $adminUpdates) { - try { - $oprofile = Ostatus_profile::ensureProfileURL('http://update.status.net/'); - Subscription::start($user->getProfile(), $oprofile->localProfile()); - updateStatus("Set up subscription to update@status.net."); - } catch (Exception $e) { - updateStatus("Could not set up subscription to update@status.net."); - } - } - - return true; } ?> @@ -945,7 +310,10 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

        Install StatusNet

        - +main(); +?>
        diff --git a/lib/installer.php b/lib/installer.php new file mode 100644 index 0000000000..d0e46f95c8 --- /dev/null +++ b/lib/installer.php @@ -0,0 +1,578 @@ +. + * + * @category Installation + * @package Installation + * + * @author Adrian Lang + * @author Brenda Wallace + * @author Brett Taylor + * @author Brion Vibber + * @author CiaranG + * @author Craig Andrews + * @author Eric Helgeson + * @author Evan Prodromou + * @author Robin Millette + * @author Sarven Capadisli + * @author Tom Adams + * @author Zach Copley + * @license GNU Affero General Public License http://www.gnu.org/licenses/ + * @version 0.9.x + * @link http://status.net + */ + +abstract class Installer +{ + /** Web site info */ + public $sitename, $server, $path, $fancy; + /** DB info */ + public $host, $dbname, $dbtype, $username, $password, $db; + /** Administrator info */ + public $adminNick, $adminPass, $adminEmail, $adminUpdates; + /** Should we skip writing the configuration file? */ + public $skipConfig = false; + + public static $dbModules = array( + 'mysql' => array( + 'name' => 'MySQL', + 'check_module' => 'mysql', // mysqli? + 'installer' => 'mysql_db_installer', + ), + 'pgsql' => array( + 'name' => 'PostgreSQL', + 'check_module' => 'pgsql', + 'installer' => 'pgsql_db_installer', + ), + ); + + /** + * Attempt to include a PHP file and report if it worked, while + * suppressing the annoying warning messages on failure. + */ + private function haveIncludeFile($filename) { + $old = error_reporting(error_reporting() & ~E_WARNING); + $ok = include_once($filename); + error_reporting($old); + return $ok; + } + + /** + * Check if all is ready for installation + * + * @return void + */ + function checkPrereqs() + { + $pass = true; + + if (file_exists(INSTALLDIR.'/config.php')) { + $this->warning('Config file "config.php" already exists.'); + $pass = false; + } + + if (version_compare(PHP_VERSION, '5.2.3', '<')) { + $errors[] = 'Require PHP version 5.2.3 or greater.'; + $pass = false; + } + + // Look for known library bugs + $str = "abcdefghijklmnopqrstuvwxyz"; + $replaced = preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str); + if ($str != $replaced) { + $this->warning('PHP is linked to a version of the PCRE library ' . + 'that does not support Unicode properties. ' . + 'If you are running Red Hat Enterprise Linux / ' . + 'CentOS 5.4 or earlier, see our documentation page on fixing this.'); + $pass = false; + } + + $reqs = array('gd', 'curl', + 'xmlwriter', 'mbstring', 'xml', 'dom', 'simplexml'); + + foreach ($reqs as $req) { + if (!$this->checkExtension($req)) { + $this->warning(sprintf('Cannot load required extension: %s', $req)); + $pass = false; + } + } + + // Make sure we have at least one database module available + $missingExtensions = array(); + foreach (self::$dbModules as $type => $info) { + if (!$this->checkExtension($info['check_module'])) { + $missingExtensions[] = $info['check_module']; + } + } + + if (count($missingExtensions) == count(self::$dbModules)) { + $req = implode(', ', $missingExtensions); + $this->warning(sprintf('Cannot find a database extension. You need at least one of %s.', $req)); + $pass = false; + } + + if (!is_writable(INSTALLDIR)) { + $this->warning(sprintf('Cannot write config file to: %s

        ', INSTALLDIR), + sprintf('On your server, try this command: chmod a+w %s', INSTALLDIR)); + $pass = false; + } + + // Check the subdirs used for file uploads + $fileSubdirs = array('avatar', 'background', 'file'); + foreach ($fileSubdirs as $fileSubdir) { + $fileFullPath = INSTALLDIR."/$fileSubdir/"; + if (!is_writable($fileFullPath)) { + $this->warning(sprintf('Cannot write to %s directory: %s', $fileSubdir, $fileFullPath), + sprintf('On your server, try this command: chmod a+w %s', $fileFullPath)); + $pass = false; + } + } + + return $pass; + } + + /** + * Checks if a php extension is both installed and loaded + * + * @param string $name of extension to check + * + * @return boolean whether extension is installed and loaded + */ + function checkExtension($name) + { + if (extension_loaded($name)) { + return true; + } elseif (function_exists('dl') && ini_get('enable_dl') && !ini_get('safe_mode')) { + // dl will throw a fatal error if it's disabled or we're in safe mode. + // More fun, it may not even exist under some SAPIs in 5.3.0 or later... + $soname = $name . '.' . PHP_SHLIB_SUFFIX; + if (PHP_SHLIB_SUFFIX == 'dll') { + $soname = "php_" . $soname; + } + return @dl($soname); + } else { + return false; + } + } + + /** + * Basic validation on the database paramters + * Side effects: error output if not valid + * + * @return boolean success + */ + function validateDb() + { + $fail = false; + + if (empty($this->host)) { + $this->updateStatus("No hostname specified.", true); + $fail = true; + } + + if (empty($this->database)) { + $this->updateStatus("No database specified.", true); + $fail = true; + } + + if (empty($this->username)) { + $this->updateStatus("No username specified.", true); + $fail = true; + } + + if (empty($this->sitename)) { + $this->updateStatus("No sitename specified.", true); + $fail = true; + } + + return !$fail; + } + + /** + * Basic validation on the administrator user paramters + * Side effects: error output if not valid + * + * @return boolean success + */ + function validateAdmin() + { + $fail = false; + + if (empty($this->adminNick)) { + $this->updateStatus("No initial StatusNet user nickname specified.", true); + $fail = true; + } + if ($this->adminNick && !preg_match('/^[0-9a-z]{1,64}$/', $this->adminNick)) { + $this->updateStatus('The user nickname "' . htmlspecialchars($this->adminNick) . + '" is invalid; should be plain letters and numbers no longer than 64 characters.', true); + $fail = true; + } + // @fixme hardcoded list; should use User::allowed_nickname() + // if/when it's safe to have loaded the infrastructure here + $blacklist = array('main', 'admin', 'twitter', 'settings', 'rsd.xml', 'favorited', 'featured', 'favoritedrss', 'featuredrss', 'rss', 'getfile', 'api', 'groups', 'group', 'peopletag', 'tag', 'user', 'message', 'conversation', 'bookmarklet', 'notice', 'attachment', 'search', 'index.php', 'doc', 'opensearch', 'robots.txt', 'xd_receiver.html', 'facebook'); + if (in_array($this->adminNick, $blacklist)) { + $this->updateStatus('The user nickname "' . htmlspecialchars($this->adminNick) . + '" is reserved.', true); + $fail = true; + } + + if (empty($this->adminPass)) { + $this->updateStatus("No initial StatusNet user password specified.", true); + $fail = true; + } + + return !$fail; + } + + /** + * Set up the database with the appropriate function for the selected type... + * Saves database info into $this->db. + * + * @return mixed array of database connection params on success, false on failure + */ + function setupDatabase() + { + if ($this->db) { + throw new Exception("Bad order of operations: DB already set up."); + } + $method = self::$dbModules[$this->dbtype]['installer']; + $db = call_user_func(array($this, $method), + $this->host, + $this->database, + $this->username, + $this->password); + $this->db = $db; + return $this->db; + } + + /** + * Set up a database on PostgreSQL. + * Will output status updates during the operation. + * + * @param string $host + * @param string $database + * @param string $username + * @param string $password + * @return mixed array of database connection params on success, false on failure + * + * @fixme escape things in the connection string in case we have a funny pass etc + */ + function Pgsql_Db_installer($host, $database, $username, $password) + { + $connstring = "dbname=$database host=$host user=$username"; + + //No password would mean trust authentication used. + if (!empty($password)) { + $connstring .= " password=$password"; + } + $this->updateStatus("Starting installation..."); + $this->updateStatus("Checking database..."); + $conn = pg_connect($connstring); + + if ($conn ===false) { + $this->updateStatus("Failed to connect to database: $connstring"); + return false; + } + + //ensure database encoding is UTF8 + $record = pg_fetch_object(pg_query($conn, 'SHOW server_encoding')); + if ($record->server_encoding != 'UTF8') { + $this->updateStatus("StatusNet requires UTF8 character encoding. Your database is ". htmlentities($record->server_encoding)); + return false; + } + + $this->updateStatus("Running database script..."); + //wrap in transaction; + pg_query($conn, 'BEGIN'); + $res = $this->runDbScript('statusnet_pg.sql', $conn, 'pgsql'); + + if ($res === false) { + $this->updateStatus("Can't run database script.", true); + return false; + } + foreach (array('sms_carrier' => 'SMS carrier', + 'notice_source' => 'notice source', + 'foreign_services' => 'foreign service') + as $scr => $name) { + $this->updateStatus(sprintf("Adding %s data to database...", $name)); + $res = $this->runDbScript($scr.'.sql', $conn, 'pgsql'); + if ($res === false) { + $this->updateStatus(sprintf("Can't run %d script.", $name), true); + return false; + } + } + pg_query($conn, 'COMMIT'); + + if (empty($password)) { + $sqlUrl = "pgsql://$username@$host/$database"; + } else { + $sqlUrl = "pgsql://$username:$password@$host/$database"; + } + + $db = array('type' => 'pgsql', 'database' => $sqlUrl); + + return $db; + } + + /** + * Set up a database on MySQL. + * Will output status updates during the operation. + * + * @param string $host + * @param string $database + * @param string $username + * @param string $password + * @return mixed array of database connection params on success, false on failure + * + * @fixme be consistent about using mysqli vs mysql! + * @fixme escape things in the connection string in case we have a funny pass etc + */ + function Mysql_Db_installer($host, $database, $username, $password) + { + $this->updateStatus("Starting installation..."); + $this->updateStatus("Checking database..."); + + $conn = mysql_connect($host, $username, $password); + if (!$conn) { + $this->updateStatus("Can't connect to server '$host' as '$username'.", true); + return false; + } + $this->updateStatus("Changing to database..."); + $res = mysql_select_db($database, $conn); + if (!$res) { + $this->updateStatus("Can't change to database.", true); + return false; + } + + $this->updateStatus("Running database script..."); + $res = $this->runDbScript('statusnet.sql', $conn); + if ($res === false) { + $this->updateStatus("Can't run database script.", true); + return false; + } + foreach (array('sms_carrier' => 'SMS carrier', + 'notice_source' => 'notice source', + 'foreign_services' => 'foreign service') + as $scr => $name) { + $this->updateStatus(sprintf("Adding %s data to database...", $name)); + $res = $this->runDbScript($scr.'.sql', $conn); + if ($res === false) { + $this->updateStatus(sprintf("Can't run %d script.", $name), true); + return false; + } + } + + $sqlUrl = "mysqli://$username:$password@$host/$database"; + $db = array('type' => 'mysql', 'database' => $sqlUrl); + return $db; + } + + /** + * Write a stock configuration file. + * + * @return boolean success + * + * @fixme escape variables in output in case we have funny chars, apostrophes etc + */ + function writeConf() + { + // assemble configuration file in a string + $cfg = "sitename}';\n\n". + + // site location + "\$config['site']['server'] = '{$this->server}';\n". + "\$config['site']['path'] = '{$this->path}'; \n\n". + + // checks if fancy URLs are enabled + ($this->fancy ? "\$config['site']['fancy'] = true;\n\n":''). + + // database + "\$config['db']['database'] = '{$this->db['database']}';\n\n". + ($this->db['type'] == 'pgsql' ? "\$config['db']['quote_identifiers'] = true;\n\n":''). + "\$config['db']['type'] = '{$this->db['type']}';\n\n"; + // write configuration file out to install directory + $res = file_put_contents(INSTALLDIR.'/config.php', $cfg); + + return $res; + } + + /** + * Install schema into the database + * + * @param string $filename location of database schema file + * @param dbconn $conn connection to database + * @param string $type type of database, currently mysql or pgsql + * + * @return boolean - indicating success or failure + */ + function runDbScript($filename, $conn, $type = 'mysqli') + { + $sql = trim(file_get_contents(INSTALLDIR . '/db/' . $filename)); + $stmts = explode(';', $sql); + foreach ($stmts as $stmt) { + $stmt = trim($stmt); + if (!mb_strlen($stmt)) { + continue; + } + // FIXME: use PEAR::DB or PDO instead of our own switch + switch ($type) { + case 'mysqli': + $res = mysql_query($stmt, $conn); + if ($res === false) { + $error = mysql_error(); + } + break; + case 'pgsql': + $res = pg_query($conn, $stmt); + if ($res === false) { + $error = pg_last_error(); + } + break; + default: + $this->updateStatus("runDbScript() error: unknown database type ". $type ." provided."); + } + if ($res === false) { + $this->updateStatus("ERROR ($error) for SQL '$stmt'"); + return $res; + } + } + return true; + } + + /** + * Create the initial admin user account. + * Side effect: may load portions of StatusNet framework. + * Side effect: outputs program info + */ + function registerInitialUser() + { + define('STATUSNET', true); + define('LACONICA', true); // compatibility + + require_once INSTALLDIR . '/lib/common.php'; + + $data = array('nickname' => $this->adminNick, + 'password' => $this->adminPass, + 'fullname' => $this->adminNick); + if ($this->adminEmail) { + $data['email'] = $this->adminEmail; + } + $user = User::register($data); + + if (empty($user)) { + return false; + } + + // give initial user carte blanche + + $user->grantRole('owner'); + $user->grantRole('moderator'); + $user->grantRole('administrator'); + + // Attempt to do a remote subscribe to update@status.net + // Will fail if instance is on a private network. + + if ($this->adminUpdates && class_exists('Ostatus_profile')) { + try { + $oprofile = Ostatus_profile::ensureProfileURL('http://update.status.net/'); + Subscription::start($user->getProfile(), $oprofile->localProfile()); + $this->updateStatus("Set up subscription to update@status.net."); + } catch (Exception $e) { + $this->updateStatus("Could not set up subscription to update@status.net.", true); + } + } + + return true; + } + + /** + * The beef of the installer! + * Create database, config file, and admin user. + * + * Prerequisites: validation of input data. + * + * @return boolean success + */ + function doInstall() + { + $this->db = $this->setupDatabase(); + + if (!$this->db) { + // database connection failed, do not move on to create config file. + return false; + } + + if (!$this->skipConfig) { + $this->updateStatus("Writing config file..."); + $res = $this->writeConf(); + + if (!$res) { + $this->updateStatus("Can't write config file.", true); + return false; + } + } + + if (!empty($this->adminNick)) { + // Okay, cross fingers and try to register an initial user + if ($this->registerInitialUser()) { + $this->updateStatus( + "An initial user with the administrator role has been created." + ); + } else { + $this->updateStatus( + "Could not create initial StatusNet user (administrator).", + true + ); + return false; + } + } + + /* + TODO https needs to be considered + */ + $link = "http://".$this->server.'/'.$this->path; + + $this->updateStatus("StatusNet has been installed at $link"); + $this->updateStatus( + "DONE! You can visit your new StatusNet site (login as '$this->adminNick'). If this is your first StatusNet install, you may want to poke around our Getting Started guide." + ); + + return true; + } + + /** + * Output a pre-install-time warning message + * @param string $message HTML ok, but should be plaintext-able + * @param string $submessage HTML ok, but should be plaintext-able + */ + abstract function warning($message, $submessage=''); + + /** + * Output an install-time progress message + * @param string $message HTML ok, but should be plaintext-able + * @param boolean $error true if this should be marked as an error condition + */ + abstract function updateStatus($status, $error=false); + +} diff --git a/scripts/install_cli.php b/scripts/install_cli.php new file mode 100755 index 0000000000..61fbe18ef6 --- /dev/null +++ b/scripts/install_cli.php @@ -0,0 +1,217 @@ +#!/usr/bin/env php +. + * + * @category Installation + * @package Installation + * + * @author Brion Vibber + * @license GNU Affero General Public License http://www.gnu.org/licenses/ + * @version 0.9.x + * @link http://status.net + */ + +if (php_sapi_name() !== 'cli') { + exit(1); +} + +define('INSTALLDIR', dirname(dirname(__FILE__))); +set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib'); + +require_once INSTALLDIR . '/lib/installer.php'; +require_once 'Console/Getopt.php'; + +class CliInstaller extends Installer +{ + public $verbose = true; + + /** + * Go for it! + * @return boolean success + */ + function main() + { + if (!$this->checkPrereqs()) { + return false; + } + if ($this->prepare()) { + return $this->handle(); + } else { + $this->showHelp(); + return false; + } + } + + /** + * Get our input parameters... + * @return boolean success + */ + function prepare() + { + $shortoptions = 'qvh'; + $longoptions = array('quiet', 'verbose', 'help', 'skip-config'); + $map = array( + '-s' => 'server', + '--server' => 'server', + '-p' => 'path', + '--path' => 'path', + '--sitename' => 'sitename', + '--fancy' => 'fancy', + + '--dbtype' => 'dbtype', + '--host' => 'host', + '--database' => 'database', + '--username' => 'username', + '--password' => 'password', + + '--admin-nick' => 'adminNick', + '--admin-pass' => 'adminPass', + '--admin-email' => 'adminEmail', + '--admin-updates' => 'adminUpdates' + ); + foreach ($map as $arg => $target) { + if (substr($arg, 0, 2) == '--') { + $longoptions[] = substr($arg, 2) . '='; + } else { + $shortoptions .= substr($arg, 1) . ':'; + } + } + + $parser = new Console_Getopt(); + $result = $parser->getopt($_SERVER['argv'], $shortoptions, $longoptions); + if (PEAR::isError($result)) { + $this->warning($result->getMessage()); + return false; + } + list($options, $args) = $result; + + // defaults + $this->dbtype = 'mysql'; + $this->adminUpdates = true; + $this->verbose = true; + + foreach ($options as $option) { + $arg = $option[0]; + if (isset($map[$arg])) { + $var = $map[$arg]; + $this->$var = $option[1]; + if ($var == 'adminUpdates' || $arg == '--fancy') { + $this->$var = ($option[1] != 'false') && ($option[1] != 'no'); + } + } else if ($arg == '--skip-config') { + $this->skipConfig = true; + } else if ($arg == 'q' || $arg == '--quiet') { + $this->verbose = false; + } else if ($arg == 'v' || $arg == '--verbose') { + $this->verbose = true; + } else if ($arg == 'h' || $arg == '--help') { + // will go back to show help + return false; + } + } + + $fail = false; + if (empty($this->server)) { + $this->updateStatus("You must specify a web server for the site.", true); + // path is optional though + $fail = true; + } + + if (!$this->validateDb()) { + $fail = true; + } + + if (!$this->validateAdmin()) { + $fail = true; + } + + return !$fail; + } + + function handle() + { + return $this->doInstall(); + } + + function showHelp() + { + echo << Use as server name (required) + -p --path= Use as path name + --sitename User-friendly site name (required) + --fancy Whether to use fancy URLs (default no) + + --dbtype 'mysql' (default) or 'pgsql' + --host Database hostname (required) + --database Database/schema name (required) + --username Database username (required) + --password Database password (required) + + --admin-nick Administrator nickname (required) + --admin-pass Initial password for admin user (required) + --admin-email Initial email address for admin user + --admin-updates 'yes' (default) or 'no', whether to subscribe + admin to update@status.net (default yes) + + --skip-config Don't write a config.php -- use with caution, + requires a global configuration file. + + General options: + + -q --quiet Quiet (little output) + -v --verbose Verbose (lots of output) + -h --help Show this message and quit. + +END_HELP; + } + + function warning($message, $submessage='') + { + print $this->html2text($message) . "\n"; + if ($submessage != '') { + print " " . $this->html2text($submessage) . "\n"; + } + print "\n"; + } + + function updateStatus($status, $error=false) + { + if ($this->verbose || $error) { + if ($error) { + print "ERROR: "; + } + print $this->html2text($status); + print "\n"; + } + } + + private function html2text($html) + { + // break out any links for text legibility + $breakout = preg_replace('/+]\bhref="(.*)"[^>]*>(.*)<\/a>/', + '\2 <\1>', + $html); + return html_entity_decode(strip_tags($breakout)); + } +} + +$installer = new CliInstaller(); +$ok = $installer->main(); +exit($ok ? 0 : 1); From 8a02cad42468c628b7b77910458c706c5d26f4df Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 10:09:56 -0700 Subject: [PATCH 04/80] drop onStartShowHeadElements handler from MobileProfile; just duplicated the original code path, and after removing the bogus notice-spewing code it was running those things twice. --- plugins/MobileProfile/MobileProfilePlugin.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/plugins/MobileProfile/MobileProfilePlugin.php b/plugins/MobileProfile/MobileProfilePlugin.php index 60bb3b68fa..1c61b4fe52 100644 --- a/plugins/MobileProfile/MobileProfilePlugin.php +++ b/plugins/MobileProfile/MobileProfilePlugin.php @@ -234,24 +234,6 @@ class MobileProfilePlugin extends WAP20Plugin } - function onStartShowHeadElements($action) - { - // @fixme nothing appears to set a serveMobile on any action, - // so this is useless and spews errors. Is this supposed to be - // checking $this? - //if (!$action->serveMobile) { - // return true; - //} - - $action->showTitle(); - $action->showShortcutIcon(); - $action->showStylesheets(); - $action->showFeeds(); - $action->showDescription(); - $action->extraHead(); - } - - function onStartShowStatusNetStyles($action) { if (!$this->serveMobile) { From ecd31384ed9560aac350085733af4039cf344c8a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 10:11:52 -0700 Subject: [PATCH 05/80] Fix for error during handling of HTTP error response case in Geonames lookups --- plugins/GeonamesPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GeonamesPlugin.php b/plugins/GeonamesPlugin.php index 718af9e0b5..bc5899943b 100644 --- a/plugins/GeonamesPlugin.php +++ b/plugins/GeonamesPlugin.php @@ -458,7 +458,7 @@ class GeonamesPlugin extends Plugin } if (!$result->isOk()) { - throw new Exception("HTTP error code " . $result->code); + throw new Exception("HTTP error code " . $result->getStatus()); } $body = $result->getBody(); From 88678eadfa2e93f540195bd934833e58f23639f7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 13:12:14 -0700 Subject: [PATCH 06/80] In single-user mode, link #hashtags to the user's tagged stream rather than the global tag action, which isn't registered. Previously they would end up pointing to the home URL. --- lib/util.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index f4ee26bbf0..bbc3341769 100644 --- a/lib/util.php +++ b/lib/util.php @@ -862,7 +862,14 @@ function common_xml_safe_str($str) function common_tag_link($tag) { $canonical = common_canonical_tag($tag); - $url = common_local_url('tag', array('tag' => $canonical)); + if (common_config('singleuser', 'enabled')) { + // regular TagAction isn't set up in 1user mode + $url = common_local_url('showstream', + array('nickname' => common_config('singleuser', 'nickname'), + 'tag' => $canonical)); + } else { + $url = common_local_url('tag', array('tag' => $canonical)); + } $xs = new XMLStringer(); $xs->elementStart('span', 'tag'); $xs->element('a', array('href' => $url, From fc1a463b9593c09e5de022c1edc5ad1108c4a33c Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 8 Apr 2010 17:20:24 -0400 Subject: [PATCH 07/80] Redirect using HTTP 303 so that form POST data is not re-submitted to the destination page --- plugins/OpenID/openidserver.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/OpenID/openidserver.php b/plugins/OpenID/openidserver.php index afbca553f5..a31596a107 100644 --- a/plugins/OpenID/openidserver.php +++ b/plugins/OpenID/openidserver.php @@ -71,7 +71,7 @@ class OpenidserverAction extends Action }else{ /* Go log in, and then come back. */ common_set_returnto($_SERVER['REQUEST_URI']); - common_redirect(common_local_url('login')); + common_redirect(common_local_url('login'), 303); return; } }else if(common_profile_url($user->nickname) == $request->identity || $request->idSelect()){ @@ -91,7 +91,7 @@ class OpenidserverAction extends Action $_SESSION['openid_allow_url'] = $allowResponse->encodeToUrl(); $_SESSION['openid_deny_url'] = $denyResponse->encodeToUrl(); //ask the user to trust this trust root - common_redirect(common_local_url('openidtrust')); + common_redirect(common_local_url('openidtrust'), 303); return; } }else{ From e1726da2e9c7e63c7bc360d7395007398440c08a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 9 Apr 2010 01:13:47 +0200 Subject: [PATCH 08/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/af/LC_MESSAGES/statusnet.po | 171 +++++++++++++------------- locale/ar/LC_MESSAGES/statusnet.po | 58 ++++----- locale/arz/LC_MESSAGES/statusnet.po | 58 ++++----- locale/bg/LC_MESSAGES/statusnet.po | 58 ++++----- locale/br/LC_MESSAGES/statusnet.po | 58 ++++----- locale/ca/LC_MESSAGES/statusnet.po | 58 ++++----- locale/cs/LC_MESSAGES/statusnet.po | 58 ++++----- locale/de/LC_MESSAGES/statusnet.po | 58 ++++----- locale/el/LC_MESSAGES/statusnet.po | 69 +++++------ locale/en_GB/LC_MESSAGES/statusnet.po | 58 ++++----- locale/es/LC_MESSAGES/statusnet.po | 4 +- locale/fa/LC_MESSAGES/statusnet.po | 58 ++++----- locale/fi/LC_MESSAGES/statusnet.po | 58 ++++----- locale/fr/LC_MESSAGES/statusnet.po | 4 +- locale/ga/LC_MESSAGES/statusnet.po | 58 ++++----- locale/he/LC_MESSAGES/statusnet.po | 58 ++++----- locale/hsb/LC_MESSAGES/statusnet.po | 58 ++++----- locale/ia/LC_MESSAGES/statusnet.po | 58 ++++----- locale/is/LC_MESSAGES/statusnet.po | 58 ++++----- locale/it/LC_MESSAGES/statusnet.po | 66 +++++----- locale/ja/LC_MESSAGES/statusnet.po | 58 ++++----- locale/ko/LC_MESSAGES/statusnet.po | 58 ++++----- locale/mk/LC_MESSAGES/statusnet.po | 4 +- locale/nb/LC_MESSAGES/statusnet.po | 81 ++++++------ locale/nl/LC_MESSAGES/statusnet.po | 4 +- locale/nn/LC_MESSAGES/statusnet.po | 62 +++++----- locale/pl/LC_MESSAGES/statusnet.po | 4 +- locale/pt/LC_MESSAGES/statusnet.po | 58 ++++----- locale/pt_BR/LC_MESSAGES/statusnet.po | 58 ++++----- locale/ru/LC_MESSAGES/statusnet.po | 4 +- locale/statusnet.pot | 2 +- locale/sv/LC_MESSAGES/statusnet.po | 4 +- locale/te/LC_MESSAGES/statusnet.po | 4 +- locale/tr/LC_MESSAGES/statusnet.po | 58 ++++----- locale/uk/LC_MESSAGES/statusnet.po | 4 +- locale/vi/LC_MESSAGES/statusnet.po | 58 ++++----- locale/zh_CN/LC_MESSAGES/statusnet.po | 58 ++++----- locale/zh_TW/LC_MESSAGES/statusnet.po | 58 ++++----- 38 files changed, 911 insertions(+), 910 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 67d6af42df..361118c626 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 23:05:47+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:04+0000\n" "Language-Team: Afrikaans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: out-statusnet\n" @@ -329,7 +329,7 @@ msgstr "Geen status met die ID gevind nie." #: actions/apifavoritecreate.php:119 msgid "This status is already a favorite." -msgstr "" +msgstr "Hierdie status is reeds 'n gunsteling." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 msgid "Could not create favorite." @@ -337,7 +337,7 @@ msgstr "Dit was nie moontlik om 'n gunsteling te skep nie." #: actions/apifavoritedestroy.php:122 msgid "That status is not a favorite." -msgstr "" +msgstr "Hierdie status is nie 'n gunsteling nie." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -361,7 +361,7 @@ msgstr "" #: actions/apifriendshipsdestroy.php:120 msgid "You cannot unfollow yourself." -msgstr "" +msgstr "U kan nie ophou om uself te volg nie." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." @@ -481,7 +481,7 @@ msgstr "%s se groepe" #: actions/apigrouplist.php:107 #, php-format msgid "%1$s groups %2$s is a member of." -msgstr "" +msgstr "Groepe op %1$s waar %2$s lid van is." #: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format @@ -499,7 +499,7 @@ msgstr "" #: actions/apioauthauthorize.php:106 msgid "Invalid token." -msgstr "" +msgstr "Ongeldige token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:157 actions/disfavor.php:74 @@ -521,7 +521,7 @@ msgstr "" #: actions/apioauthauthorize.php:135 msgid "Invalid nickname / password!" -msgstr "" +msgstr "Ongeldige gebruikersnaam of wagwoord!" #: actions/apioauthauthorize.php:159 msgid "Database error deleting OAuth application user." @@ -550,11 +550,11 @@ msgstr "" #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:248 lib/designsettings.php:304 msgid "Unexpected form submission." -msgstr "" +msgstr "Die vorm is onverwags ingestuur." #: actions/apioauthauthorize.php:259 msgid "An application would like to connect to your account" -msgstr "" +msgstr "'n Toepassing vra toegang tot u gebruikersinligting" #: actions/apioauthauthorize.php:276 msgid "Allow or deny access" @@ -595,28 +595,28 @@ msgstr "Toestaan" #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." -msgstr "" +msgstr "Laat toegang tot u gebruikersinligting toe of weier dit." #: actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." -msgstr "" +msgstr "Hierdie metode vereis 'n POST of DELETE." #: actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." -msgstr "" +msgstr "U mag nie 'n ander gebruiker se status verwyder nie." #: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." -msgstr "" +msgstr "Die kennisgewing bestaan nie." #: actions/apistatusesretweet.php:83 msgid "Cannot repeat your own notice." -msgstr "" +msgstr "U kan nie u eie kennisgewings herhaal nie." #: actions/apistatusesretweet.php:91 msgid "Already repeated that notice." -msgstr "" +msgstr "U het reeds die kennisgewing herhaal." #: actions/apistatusesshow.php:138 msgid "Status deleted." @@ -624,13 +624,13 @@ msgstr "Die status is verwyder." #: actions/apistatusesshow.php:144 msgid "No status with that ID found." -msgstr "" +msgstr "Geen status met die ID gevind nie." #: 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 "" +msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters." #: actions/apistatusesupdate.php:202 msgid "Not found" @@ -648,7 +648,7 @@ msgstr "Nie-ondersteunde formaat." #: actions/apitimelinefavorites.php:109 #, php-format msgid "%1$s / Favorites from %2$s" -msgstr "" +msgstr "%1$s / Gunstelinge van %2$s" #: actions/apitimelinefavorites.php:118 #, php-format @@ -764,7 +764,7 @@ msgstr "Uitsny" #: actions/avatarsettings.php:305 msgid "No file uploaded." -msgstr "" +msgstr "Geen lêer opgelaai nie." #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" @@ -855,15 +855,15 @@ msgstr "" #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" -msgstr "" +msgstr "Gee gebruiker weer toegang tot die groep" #: actions/blockedfromgroup.php:320 lib/unblockform.php:69 msgid "Unblock" -msgstr "" +msgstr "Deblokkeer" #: actions/blockedfromgroup.php:320 lib/unblockform.php:80 msgid "Unblock this user" -msgstr "" +msgstr "Deblokkeer hierdie gebruiker" #: actions/bookmarklet.php:50 msgid "Post to " @@ -871,7 +871,7 @@ msgstr "Stuur aan " #: actions/confirmaddress.php:75 msgid "No confirmation code." -msgstr "" +msgstr "Geen bevestigingskode." #: actions/confirmaddress.php:80 msgid "Confirmation code not found." @@ -982,15 +982,15 @@ msgstr "" #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" -msgstr "" +msgstr "Verwyder kennisgewing" #: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" -msgstr "" +msgstr "Is u seker u wil hierdie kennisgewing verwyder?" #: actions/deletenotice.php:145 msgid "Do not delete this notice" -msgstr "" +msgstr "Moenie hierdie kennisgewing verwyder nie" #: actions/deletenotice.php:146 lib/noticelist.php:659 msgid "Delete this notice" @@ -1138,7 +1138,7 @@ msgstr "Stoor ontwerp" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "" +msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!" #: actions/disfavor.php:94 msgid "Add to favorites" @@ -1184,11 +1184,11 @@ msgstr "Beskrywing word vereis." #: actions/editapplication.php:194 msgid "Source URL is too long." -msgstr "" +msgstr "Die bron-URL is te lank." #: actions/editapplication.php:200 actions/newapplication.php:185 msgid "Source URL is not valid." -msgstr "" +msgstr "Die bron-URL is nie geldig nie." #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." @@ -1265,7 +1265,7 @@ msgstr "Adres" #: actions/emailsettings.php:105 msgid "Current confirmed email address." -msgstr "" +msgstr "Huidige bevestigde e-posadres." #: actions/emailsettings.php:107 actions/emailsettings.php:140 #: actions/imsettings.php:108 actions/smssettings.php:115 @@ -1291,7 +1291,7 @@ msgstr "E-posadres" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" -msgstr "" +msgstr "E-posadres, soos \"UserName@example.org\"" #: actions/emailsettings.php:126 actions/imsettings.php:133 #: actions/smssettings.php:145 @@ -1435,12 +1435,12 @@ msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" -msgstr "" +msgstr "Populêre kennisgewings" #: actions/favorited.php:67 #, php-format msgid "Popular notices, page %d" -msgstr "" +msgstr "Populêre kennisgewings, bladsy %d" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." @@ -1477,12 +1477,12 @@ msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" -msgstr "" +msgstr "Nuwe gebruikers" #: actions/featured.php:71 #, php-format msgid "Featured users, page %d" -msgstr "" +msgstr "Nuwe gebruikers, bladsy %d" #: actions/featured.php:99 #, php-format @@ -1491,11 +1491,11 @@ msgstr "" #: actions/file.php:34 msgid "No notice ID." -msgstr "" +msgstr "Geen kennisgewing-ID." #: actions/file.php:38 msgid "No notice." -msgstr "" +msgstr "Geen kennisgewing." #: actions/file.php:42 msgid "No attachments." @@ -1608,7 +1608,7 @@ msgstr "" #: actions/groupblock.php:179 msgid "Block this user from this group" -msgstr "" +msgstr "Blok hierdie gebruiker van hierdie groep" #: actions/groupblock.php:196 msgid "Database error blocking user from group." @@ -1833,23 +1833,23 @@ msgstr "" #: actions/imsettings.php:285 msgid "No Jabber ID." -msgstr "" +msgstr "Geen Jabber-ID nie." #: actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" -msgstr "" +msgstr "Dit was nie moontlik om die Jabber-ID te normaliseer nie" #: actions/imsettings.php:296 msgid "Not a valid Jabber ID" -msgstr "" +msgstr "Nie 'n geldige Jabber-ID nie" #: actions/imsettings.php:299 msgid "That is already your Jabber ID." -msgstr "" +msgstr "Dit is al reeds u Jabber-ID." #: actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." -msgstr "" +msgstr "Die Jabber-ID word reeds deur 'n ander gebruiker gebruik." #: actions/imsettings.php:327 #, php-format @@ -1860,7 +1860,7 @@ msgstr "" #: actions/imsettings.php:387 msgid "That is not your Jabber ID." -msgstr "" +msgstr "Dit is nie u Jabber-ID nie." #: actions/inbox.php:59 #, php-format @@ -1991,7 +1991,7 @@ msgstr "U moet aanteken alvorens u by groep kan aansluit." #: actions/joingroup.php:88 actions/leavegroup.php:88 msgid "No nickname or ID." -msgstr "" +msgstr "Geen gebruikersnaam of ID nie." #: actions/joingroup.php:141 #, php-format @@ -2093,11 +2093,11 @@ msgstr "" #: actions/newapplication.php:176 msgid "Source URL is required." -msgstr "" +msgstr "'n Bron-URL is verpligtend." #: actions/newapplication.php:258 actions/newapplication.php:267 msgid "Could not create application." -msgstr "" +msgstr "Dit was nie moontlik om die applikasie te skep nie." #: actions/newgroup.php:53 msgid "New group" @@ -2252,7 +2252,7 @@ msgstr "" #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format msgid "%1$s's status on %2$s" -msgstr "" +msgstr "Status van %1$s op %2$s" #: actions/oembed.php:157 msgid "content type " @@ -2541,7 +2541,7 @@ msgstr "Gebruik SSL" #: actions/pathsadminpanel.php:330 msgid "When to use SSL" -msgstr "" +msgstr "Wanneer SSL gebruik moet word" #: actions/pathsadminpanel.php:335 msgid "SSL server" @@ -2564,7 +2564,7 @@ msgstr "" #: actions/peoplesearch.php:58 msgid "People search" -msgstr "" +msgstr "Soek gebruikers" #: actions/peopletag.php:68 #, php-format @@ -3451,17 +3451,17 @@ msgstr "" #: actions/shownotice.php:90 msgid "Notice deleted." -msgstr "" +msgstr "Hierdie kennisgewing is verwyder." #: actions/showstream.php:73 #, php-format msgid " tagged %s" -msgstr "" +msgstr "met die etiket %s" #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" -msgstr "" +msgstr "%1$s, bladsy %2$d" #: actions/showstream.php:122 #, php-format @@ -3530,11 +3530,11 @@ msgstr "Herhaling van %s" #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." -msgstr "" +msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie." #: actions/silence.php:72 msgid "User is already silenced." -msgstr "" +msgstr "Hierdie gebruiker is reeds stilgemaak." #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" @@ -3615,19 +3615,19 @@ msgstr "" #: actions/siteadminpanel.php:271 msgid "Limits" -msgstr "" +msgstr "Limiete" #: actions/siteadminpanel.php:274 msgid "Text limit" -msgstr "" +msgstr "Tekslimiet" #: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." -msgstr "" +msgstr "Maksimum aantal karakters vir kennisgewings." #: actions/siteadminpanel.php:278 msgid "Dupe limit" -msgstr "" +msgstr "Duplikaatlimiet" #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." @@ -3692,7 +3692,7 @@ msgstr "" #: actions/smssettings.php:138 msgid "SMS phone number" -msgstr "" +msgstr "SMS-nommer" #: actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" @@ -3904,7 +3904,7 @@ msgstr "" #: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." -msgstr "" +msgstr "%s volg niemand nie." #: actions/subscriptions.php:208 msgid "Jabber" @@ -4163,7 +4163,7 @@ msgstr "" #: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "" +msgstr "Kan nie die avatar-URL \"%s\" lees nie." #: actions/userauthorization.php:355 #, php-format @@ -4187,11 +4187,11 @@ msgstr "Geniet u worsbroodjie!" #: actions/usergroups.php:64 #, php-format msgid "%1$s groups, page %2$d" -msgstr "" +msgstr "%1$s groepe, bladsy %2$d" #: actions/usergroups.php:130 msgid "Search for more groups" -msgstr "" +msgstr "Soek vir meer groepe" #: actions/usergroups.php:157 #, php-format @@ -4848,23 +4848,23 @@ msgstr "" #: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" -msgstr "" +msgstr "Etikette vir hierdie aanhangsel" #: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 msgid "Password changing failed" -msgstr "" +msgstr "Wagwoord wysiging het misluk" #: lib/authenticationplugin.php:235 msgid "Password changing is not allowed" -msgstr "" +msgstr "Wagwoord verandering word nie toegelaat nie" #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" -msgstr "" +msgstr "Opdragresultate" #: lib/channel.php:229 lib/mailhandler.php:142 msgid "Command complete" -msgstr "" +msgstr "Opdrag voltooi" #: lib/channel.php:240 msgid "Command failed" @@ -5070,33 +5070,30 @@ msgid "You are not subscribed to anyone." msgstr "" #: lib/command.php:754 -#, 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:" +msgstr[0] "U volg hierdie gebruiker:" +msgstr[1] "U volg hierdie gebruikers:" #: lib/command.php:774 msgid "No one is subscribed to you." msgstr "" #: lib/command.php:776 -#, 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:" +msgstr[0] "Hierdie gebruiker volg u:" +msgstr[1] "Hierdie gebruikers volg u:" #: lib/command.php:796 msgid "You are not a member of any groups." -msgstr "" +msgstr "U is nie 'n lid van enige groep nie." #: lib/command.php:798 -#, 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:" +msgstr[0] "U is 'n lid van hierdie groep:" +msgstr[1] "U is 'n lid van hierdie groepe:" #: lib/command.php:812 msgid "" @@ -5353,7 +5350,7 @@ msgstr "" #: lib/imagefile.php:163 lib/imagefile.php:224 msgid "Unknown file type" -msgstr "" +msgstr "Onbekende lêertipe" #: lib/imagefile.php:244 msgid "MB" @@ -5456,11 +5453,11 @@ msgstr "" #: lib/mail.php:417 #, php-format msgid "%s status" -msgstr "" +msgstr "%s status" #: lib/mail.php:443 msgid "SMS confirmation" -msgstr "" +msgstr "SMS-bevestiging" #: lib/mail.php:467 #, php-format @@ -5824,16 +5821,16 @@ msgstr "Gebruikers-ID" #: lib/profileaction.php:196 msgid "Member since" -msgstr "" +msgstr "Lid sedert" #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 msgid "Daily average" -msgstr "" +msgstr "Daaglikse gemiddelde" #: lib/profileaction.php:264 msgid "All groups" -msgstr "" +msgstr "Alle groepe" #: lib/profileformaction.php:123 msgid "No return-to arguments." @@ -5949,7 +5946,7 @@ msgstr "" #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" -msgstr "" +msgstr "Groepe waarvan %s lid is" #: lib/subgroupnav.php:105 msgid "Invite" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index f8dc2b68b4..5588b8ad3d 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:34+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:08+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -813,7 +813,7 @@ msgstr "لا تمنع هذا المستخدم" msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -913,7 +913,7 @@ msgid "Conversation" msgstr "محادثة" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "الإشعارات" @@ -1589,7 +1589,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا في المجموعة." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1684,19 +1684,19 @@ msgstr "قائمة بمستخدمي هذه المجموعة." msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "اجعل المستخدم إداريًا في المجموعة" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" @@ -1711,7 +1711,7 @@ msgstr "مسار %s الزمني" msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "مجموعات" @@ -2577,12 +2577,12 @@ msgstr "" msgid "People search" msgstr "بحث في الأشخاص" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "ليس وسم أشخاص صالح: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d" @@ -3258,8 +3258,8 @@ msgstr "المنظمة" msgid "Description" msgstr "الوصف" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "إحصاءات" @@ -3416,25 +3416,25 @@ msgstr "" msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "أنشئت" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3449,7 +3449,7 @@ msgstr "" "[انضم الآن](%%%%action.register%%%%) لتصبح عضوًا في هذه المجموعة ومجموعات " "أخرى عديدة! ([اقرأ المزيد](%%%%doc.help%%%%))" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3461,7 +3461,7 @@ msgstr "" "en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [StatusNet]" "(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. " -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "الإداريون" @@ -5932,7 +5932,7 @@ msgstr "وسوم في إشعارات %s" msgid "Unknown" msgstr "غير معروفة" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "الاشتراكات" @@ -5940,28 +5940,28 @@ msgstr "الاشتراكات" msgid "All subscriptions" msgstr "جميع الاشتراكات" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "المشتركون" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "جميع المشتركين" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "هوية المستخدم" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "عضو منذ" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "المُعدّل اليومي" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "كل المجموعات" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index d8b12e2d55..e327309d7a 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:37+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:11+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 (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -820,7 +820,7 @@ msgstr "لا تمنع هذا المستخدم" msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -920,7 +920,7 @@ msgid "Conversation" msgstr "محادثة" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "الإشعارات" @@ -1602,7 +1602,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا فى المجموعه." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1697,19 +1697,19 @@ msgstr "قائمه بمستخدمى هذه المجموعه." msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" @@ -1724,7 +1724,7 @@ msgstr "مسار %s الزمني" msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "مجموعات" @@ -2581,12 +2581,12 @@ msgstr "" msgid "People search" msgstr "بحث فى الأشخاص" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "ليس وسم أشخاص صالح: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "" @@ -3261,8 +3261,8 @@ msgstr "المنظمه" msgid "Description" msgstr "الوصف" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "إحصاءات" @@ -3419,25 +3419,25 @@ msgstr "" msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "أنشئ" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3447,7 +3447,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3456,7 +3456,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "الإداريون" @@ -5890,7 +5890,7 @@ msgstr "" msgid "Unknown" msgstr "مش معروف" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "الاشتراكات" @@ -5898,28 +5898,28 @@ msgstr "الاشتراكات" msgid "All subscriptions" msgstr "جميع الاشتراكات" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "المشتركون" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "جميع المشتركين" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "هويه المستخدم" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "عضو منذ" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "كل المجموعات" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 8b2e142369..eea55216a8 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:40+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:14+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -823,7 +823,7 @@ msgstr "Да не се блокира този потребител" msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -925,7 +925,7 @@ msgid "Conversation" msgstr "Разговор" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Бележки" @@ -1631,7 +1631,7 @@ msgstr "Потребителят вече е блокиран за групат msgid "User is not a member of group." msgstr "Потребителят не членува в групата." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "Блокиране на потребителя" @@ -1734,20 +1734,20 @@ msgstr "Списък с потребителите в тази група." msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Блокиране" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 #, fuzzy msgid "Make user an admin of the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1762,7 +1762,7 @@ msgstr "Поток на %s" msgid "Updates from members of %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -2687,12 +2687,12 @@ msgstr "" msgid "People search" msgstr "Търсене на хора" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Това не е правилен адрес на е-поща." -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Бележки с етикет %s, страница %d" @@ -3397,8 +3397,8 @@ msgstr "Организация" msgid "Description" msgstr "Описание" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Статистики" @@ -3552,25 +3552,25 @@ msgstr "Емисия с бележки на %s" msgid "FOAF for %s group" msgstr "Изходяща кутия за %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Членове" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Всички членове" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Създадена на" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3580,7 +3580,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3589,7 +3589,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Администратори" @@ -6089,7 +6089,7 @@ msgstr "Етикети в бележките на %s" msgid "Unknown" msgstr "Непознато действие" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Абонаменти" @@ -6097,29 +6097,29 @@ msgstr "Абонаменти" msgid "All subscriptions" msgstr "Всички абонаменти" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Абонати" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Всички абонати" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 #, fuzzy msgid "User ID" msgstr "Потребител" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Участник от" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Всички групи" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 205167316a..f635197145 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:43+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:17+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -812,7 +812,7 @@ msgstr "Arabat stankañ an implijer-mañ" msgid "Yes" msgstr "Ya" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Stankañ an implijer-mañ" @@ -913,7 +913,7 @@ msgid "Conversation" msgstr "Kaozeadenn" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Ali" @@ -1586,7 +1586,7 @@ msgstr "An implijer-mañ a zo stanket dija eus ar strollad." 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 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Stankañ an implijer-mañ eus ar strollad" @@ -1681,19 +1681,19 @@ msgstr "Roll an implijerien enrollet er strollad-mañ." msgid "Admin" msgstr "Merañ" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Stankañ" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Lakaat ur merour" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Lakaat an implijer-mañ da verour" @@ -1708,7 +1708,7 @@ msgstr "Oberezhioù %s" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Strolladoù" @@ -2576,12 +2576,12 @@ msgstr "" msgid "People search" msgstr "Klask tud" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "N'eo ket reizh ar merk-se : %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Implijerien bet merket drezo o unan gant %1$s - pajenn %2$d" @@ -3248,8 +3248,8 @@ msgstr "Aozadur" msgid "Description" msgstr "Deskrivadur" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Stadegoù" @@ -3401,25 +3401,25 @@ msgstr "" msgid "FOAF for %s group" msgstr "Mignon ur mignon evit ar strollad %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Izili" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Hini ebet)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "An holl izili" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Krouet" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3429,7 +3429,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3438,7 +3438,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Merourien" @@ -5819,7 +5819,7 @@ msgstr "" msgid "Unknown" msgstr "Dianav" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Koumanantoù" @@ -5827,28 +5827,28 @@ msgstr "Koumanantoù" msgid "All subscriptions" msgstr "An holl koumanantoù" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Ar re koumanantet" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "An holl re koumanantet" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "ID an implijer" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Ezel abaoe" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "Keidenn pemdeziek" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "An holl strolladoù" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index e4be063e92..bf6bd9175d 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:46+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:21+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -849,7 +849,7 @@ msgstr "No bloquis l'usuari" msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquejar aquest usuari" @@ -951,7 +951,7 @@ msgid "Conversation" msgstr "Conversa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avisos" @@ -1665,7 +1665,7 @@ msgstr "Un usuari t'ha bloquejat." msgid "User is not a member of group." msgstr "L'usuari no és membre del grup." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Bloca l'usuari del grup" @@ -1766,19 +1766,19 @@ msgstr "La llista dels usuaris d'aquest grup." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Bloca" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Fes l'usuari un administrador del grup" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Fes-lo administrador" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Fes l'usuari administrador" @@ -1793,7 +1793,7 @@ msgstr "%s línia temporal" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grups" @@ -2727,12 +2727,12 @@ msgstr "" msgid "People search" msgstr "Cerca de gent" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Etiqueta no vàlida per a la gent: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuaris que s'han etiquetat %s - pàgina %d" @@ -3461,8 +3461,8 @@ msgstr "Paginació" msgid "Description" msgstr "Descripció" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Estadístiques" @@ -3616,25 +3616,25 @@ msgstr "Feed d'avisos del grup %s" msgid "FOAF for %s group" msgstr "Safata de sortida per %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Cap)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Tots els membres" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "S'ha creat" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3644,7 +3644,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3655,7 +3655,7 @@ msgstr "" "**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" "(http://ca.wikipedia.org/wiki/Microblogging)" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Administradors" @@ -6175,7 +6175,7 @@ msgstr "Etiquetes en les notificacions de %s's" msgid "Unknown" msgstr "Acció desconeguda" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscripcions" @@ -6183,28 +6183,28 @@ msgstr "Subscripcions" msgid "All subscriptions" msgstr "Totes les subscripcions" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscriptors" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Tots els subscriptors" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "ID de l'usuari" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Membre des de" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Tots els grups" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 92184a31d3..f61ff5cc89 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:49+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:24+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -848,7 +848,7 @@ msgstr "Žádný takový uživatel." msgid "Yes" msgstr "Ano" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -953,7 +953,7 @@ msgid "Conversation" msgstr "Umístění" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Sdělení" @@ -1669,7 +1669,7 @@ msgstr "Uživatel nemá profil." msgid "User is not a member of group." msgstr "Neodeslal jste nám profil" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "Žádný takový uživatel." @@ -1773,19 +1773,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1800,7 +1800,7 @@ msgstr "" msgid "Updates from members of %1$s on %2$s!" msgstr "Mikroblog od %s" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Skupiny" @@ -2707,12 +2707,12 @@ msgstr "" msgid "People search" msgstr "Hledání lidí" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Není platnou mailovou adresou." -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Mikroblog od %s" @@ -3414,8 +3414,8 @@ msgstr "Umístění" msgid "Description" msgstr "Odběry" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistiky" @@ -3568,27 +3568,27 @@ msgstr "Feed sdělení pro %s" msgid "FOAF for %s group" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Členem od" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "Vytvořit" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3598,7 +3598,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3607,7 +3607,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "" @@ -6130,7 +6130,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Odběry" @@ -6138,28 +6138,28 @@ msgstr "Odběry" msgid "All subscriptions" msgstr "Všechny odběry" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Odběratelé" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Všichni odběratelé" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Členem od" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 1940a22b1a..17c12aa108 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -16,11 +16,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:52+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:27+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -847,7 +847,7 @@ msgstr "Diesen Benutzer freigeben" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -947,7 +947,7 @@ msgid "Conversation" msgstr "Unterhaltung" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Nachrichten" @@ -1644,7 +1644,7 @@ msgstr "Dieser Nutzer ist bereits von der Gruppe gesperrt" msgid "User is not a member of group." msgstr "Nutzer ist kein Mitglied dieser Gruppe." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Benutzerzugang zu der Gruppe blockieren" @@ -1747,19 +1747,19 @@ msgstr "Liste der Benutzer in dieser Gruppe." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Blockieren" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Zum Admin ernennen" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" @@ -1774,7 +1774,7 @@ msgstr "%s Zeitleiste" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppen" @@ -2712,12 +2712,12 @@ msgstr "" msgid "People search" msgstr "Suche nach anderen Nutzern" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Ungültiger Personen-Tag: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Benutzer die sich selbst mit %1$s getagged haben - Seite %2$d" @@ -3449,8 +3449,8 @@ msgstr "Organisation" msgid "Description" msgstr "Beschreibung" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistiken" @@ -3610,25 +3610,25 @@ msgstr "Nachrichtenfeed der Gruppe %s (Atom)" msgid "FOAF for %s group" msgstr "Postausgang von %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Mitglieder" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Kein)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Alle Mitglieder" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Erstellt" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3643,7 +3643,7 @@ msgstr "" "und werde Teil der Gruppe und vielen anderen! ([Mehr Informationen](%%%%doc." "help%%%%))" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3656,7 +3656,7 @@ msgstr "" "Freien Software [StatusNet](http://status.net/). Seine Mitglieder erstellen " "kurze Nachrichten über Ihr Leben und Interessen. " -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Administratoren" @@ -6256,7 +6256,7 @@ msgstr "Stichworte in %ss Nachrichten" msgid "Unknown" msgstr "Unbekannter Befehl" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" @@ -6264,28 +6264,28 @@ msgstr "Abonnements" msgid "All subscriptions" msgstr "Alle Abonnements" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnenten" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Alle Abonnenten" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "Nutzer ID" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Mitglied seit" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "Tagesdurchschnitt" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Alle Gruppen" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 77d8d701c9..cd1052add1 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:55+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:29+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -57,7 +57,7 @@ msgstr "Κάντε την εγγραφή να είναι με πρόσκληση #. TRANS: Checkbox label for configuring site as invite only. #: actions/accessadminpanel.php:176 msgid "Invite only" -msgstr "" +msgstr "Μόνο με πρόσκληση" #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) #: actions/accessadminpanel.php:183 @@ -601,7 +601,7 @@ msgstr "" #: actions/apioauthauthorize.php:334 msgid "Allow" -msgstr "" +msgstr "Να επιτραπεί" #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." @@ -646,7 +646,7 @@ msgstr "" #: actions/apistatusesupdate.php:202 msgid "Not found" -msgstr "" +msgstr "Δεν βρέθηκε" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -832,7 +832,7 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος msgid "Yes" msgstr "Ναι" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "" @@ -934,7 +934,7 @@ msgid "Conversation" msgstr "Συζήτηση" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -1644,7 +1644,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "" @@ -1742,20 +1742,20 @@ msgstr "" msgid "Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 #, fuzzy msgid "Make Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1770,7 +1770,7 @@ msgstr "χρονοδιάγραμμα του χρήστη %s" msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2657,12 +2657,12 @@ msgstr "" msgid "People search" msgstr "" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "" @@ -3368,8 +3368,8 @@ msgstr "Προσκλήσεις" msgid "Description" msgstr "Περιγραφή" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "" @@ -3523,25 +3523,25 @@ msgstr "" msgid "FOAF for %s group" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Μέλη" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Δημιουργημένος" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3551,7 +3551,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3560,7 +3560,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Διαχειριστές" @@ -6009,7 +6009,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -6017,28 +6017,28 @@ msgstr "" msgid "All subscriptions" msgstr "Όλες οι συνδρομές" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Μέλος από" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "" @@ -6258,15 +6258,14 @@ msgid "User role" msgstr "Προφίλ χρήστη" #: lib/userprofile.php:366 -#, fuzzy msgctxt "role" msgid "Administrator" -msgstr "Διαχειριστές" +msgstr "Διαχειριστής" #: lib/userprofile.php:367 msgctxt "role" msgid "Moderator" -msgstr "" +msgstr "Συντονιστής" #: lib/util.php:1046 msgid "a few seconds ago" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 06b928ec26..f7887cab42 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:54:58+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:32+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 (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -834,7 +834,7 @@ msgstr "Do not block this user" msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Block this user" @@ -934,7 +934,7 @@ msgid "Conversation" msgstr "Conversation" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notices" @@ -1628,7 +1628,7 @@ msgstr "User is already blocked from group." msgid "User is not a member of group." msgstr "User is not a member of group." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Block user from group" @@ -1729,19 +1729,19 @@ msgstr "A list of the users in this group." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Block" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Make user an admin of the group" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Make admin" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Make this user an admin" @@ -1756,7 +1756,7 @@ msgstr "%s timeline" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Groups" @@ -2671,12 +2671,12 @@ msgstr "" msgid "People search" msgstr "People Search" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Not a valid people tag: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Users self-tagged with %1$s - page %2$d" @@ -3383,8 +3383,8 @@ msgstr "Organization" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistics" @@ -3543,25 +3543,25 @@ msgstr "Notice feed for %s group (Atom)" msgid "FOAF for %s group" msgstr "Outbox for %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Members" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(None)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "All members" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Created" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3576,7 +3576,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:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3589,7 +3589,7 @@ msgstr "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Admins" @@ -6061,7 +6061,7 @@ msgstr "Tags in %s's notices" msgid "Unknown" msgstr "Unknown" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscriptions" @@ -6069,28 +6069,28 @@ msgstr "Subscriptions" msgid "All subscriptions" msgstr "All subscriptions" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscribers" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "All subscribers" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "User ID" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Member since" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "All groups" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index b72d774c1b..95f37a4b88 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -14,11 +14,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:54:17+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:36+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 77afb2bd4a..c1c8ba0fee 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:15+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:45+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title @@ -837,7 +837,7 @@ msgstr "کاربر را مسدود نکن" msgid "Yes" msgstr "بله" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -938,7 +938,7 @@ msgid "Conversation" msgstr "مکالمه" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "پیام‌ها" @@ -1648,7 +1648,7 @@ msgstr "هم اکنون دسترسی کاربر به گروه مسدود شده msgid "User is not a member of group." msgstr "کاربر عضو گروه نیست." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "دسترسی کاربر به گروه را مسدود کن" @@ -1744,19 +1744,19 @@ msgstr "یک فهرست از کاربران در این گروه" msgid "Admin" msgstr "مدیر" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "بازداشتن" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "کاربر یک مدیر گروه شود" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "مدیر شود" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" @@ -1771,7 +1771,7 @@ msgstr "خط زمانی %s" msgid "Updates from members of %1$s on %2$s!" msgstr "به روز رسانی کابران %1$s در %2$s" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "گروه‌ها" @@ -2679,12 +2679,12 @@ msgstr "" msgid "People search" msgstr "جست‌وجوی کاربران" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "یک برچسب کاربری معتبر نیست: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "کاربران خود برچسب‌گذاری شده با %s - صفحهٔ %d" @@ -3370,8 +3370,8 @@ msgstr "صفحه بندى" msgid "Description" msgstr "" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "آمار" @@ -3525,25 +3525,25 @@ msgstr "" msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "اعضا" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "هیچ" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "همه ی اعضا" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "ساخته شد" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3553,7 +3553,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3562,7 +3562,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "" @@ -6015,7 +6015,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "اشتراک‌ها" @@ -6023,28 +6023,28 @@ msgstr "اشتراک‌ها" msgid "All subscriptions" msgstr "تمام اشتراک‌ها" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "مشترک‌ها" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "تمام مشترک‌ها" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "شناسه کاربر" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "عضو شده از" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "تمام گروه‌ها" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 4be4a250de..0e3224b360 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:08+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:42+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -851,7 +851,7 @@ msgstr "Älä estä tätä käyttäjää" msgid "Yes" msgstr "Kyllä" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -953,7 +953,7 @@ msgid "Conversation" msgstr "Keskustelu" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Päivitykset" @@ -1678,7 +1678,7 @@ msgstr "Käyttäjä on asettanut eston sinulle." msgid "User is not a member of group." msgstr "Käyttäjä ei kuulu tähän ryhmään." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Estä käyttäjä ryhmästä" @@ -1776,19 +1776,19 @@ msgstr "Lista ryhmän käyttäjistä." msgid "Admin" msgstr "Ylläpito" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Estä" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Tee tästä käyttäjästä ylläpitäjä" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Tee ylläpitäjäksi" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Tee tästä käyttäjästä ylläpitäjä" @@ -1803,7 +1803,7 @@ msgstr "%s aikajana" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Ryhmät" @@ -2755,12 +2755,12 @@ msgstr "" msgid "People search" msgstr "Etsi ihmisiä" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Ei sallittu henkilötagi: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" @@ -3496,8 +3496,8 @@ msgstr "Sivutus" msgid "Description" msgstr "Kuvaus" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Tilastot" @@ -3650,25 +3650,25 @@ msgstr "Syöte ryhmän %s päivityksille (Atom)" msgid "FOAF for %s group" msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Jäsenet" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Tyhjä)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Kaikki jäsenet" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Luotu" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3678,7 +3678,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3689,7 +3689,7 @@ msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Ylläpitäjät" @@ -6241,7 +6241,7 @@ msgstr "Tagit käyttäjän %s päivityksissä" msgid "Unknown" msgstr "Tuntematon toiminto" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tilaukset" @@ -6249,29 +6249,29 @@ msgstr "Tilaukset" msgid "All subscriptions" msgstr "Kaikki tilaukset" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tilaajat" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Kaikki tilaajat" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 #, fuzzy msgid "User ID" msgstr "Käyttäjä" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Käyttäjänä alkaen" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Kaikki ryhmät" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index edf0f67078..19a386abd3 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -15,11 +15,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:54:27+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:48+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 78f3c56d71..c21298a8e6 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:21+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:51+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -857,7 +857,7 @@ msgstr "Bloquear usuario" msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" @@ -964,7 +964,7 @@ msgid "Conversation" msgstr "Código de confirmación." #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Chíos" @@ -1704,7 +1704,7 @@ msgstr "O usuario bloqueoute." msgid "User is not a member of group." msgstr "%1s non é unha orixe fiable." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "Bloquear usuario" @@ -1810,19 +1810,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1837,7 +1837,7 @@ msgstr "Liña de tempo de %s" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2786,12 +2786,12 @@ msgstr "" msgid "People search" msgstr "Procurar xente." -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "%s non é unha etiqueta de xente válida" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" @@ -3532,8 +3532,8 @@ msgstr "Invitación(s) enviada(s)." msgid "Description" msgstr "Subscricións" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Estatísticas" @@ -3689,28 +3689,28 @@ msgstr "Fonte de chíos para %s" msgid "FOAF for %s group" msgstr "Band. Saída para %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Membro dende" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #, fuzzy msgid "(None)" msgstr "(nada)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "Crear" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3724,7 +3724,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:464 +#: actions/showgroup.php:469 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3737,7 +3737,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:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "" @@ -6400,7 +6400,7 @@ msgstr "O usuario non ten último chio." msgid "Unknown" msgstr "Acción descoñecida" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscricións" @@ -6408,30 +6408,30 @@ msgstr "Subscricións" msgid "All subscriptions" msgstr "Tódalas subscricións" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscritores" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 #, fuzzy msgid "All subscribers" msgstr "Subscritores" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 #, fuzzy msgid "User ID" msgstr "Usuario" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Membro dende" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 #, fuzzy msgid "All groups" msgstr "Tódalas etiquetas" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 99de51a7f0..97aed1f2c9 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -8,11 +8,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:24+0000\n" +"PO-Revision-Date: 2010-04-08 23:08:55+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -847,7 +847,7 @@ msgstr "אין משתמש כזה." msgid "Yes" msgstr "כן" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." @@ -953,7 +953,7 @@ msgid "Conversation" msgstr "מיקום" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "הודעות" @@ -1676,7 +1676,7 @@ msgstr "למשתמש אין פרופיל." msgid "User is not a member of group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "אין משתמש כזה." @@ -1781,19 +1781,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Updates from members of %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "קבוצות" @@ -2716,12 +2716,12 @@ msgstr "" msgid "People search" msgstr "חיפוש סיסמה" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "לא עומד בכללים ל-OpenID." -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "מיקרובלוג מאת %s" @@ -3417,8 +3417,8 @@ msgstr "מיקום" msgid "Description" msgstr "הרשמות" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "סטטיסטיקה" @@ -3572,27 +3572,27 @@ msgstr "הזנת הודעות של %s" msgid "FOAF for %s group" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "חבר מאז" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "צור" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3602,7 +3602,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3611,7 +3611,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "" @@ -6130,7 +6130,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "הרשמות" @@ -6138,30 +6138,30 @@ msgstr "הרשמות" msgid "All subscriptions" msgstr "כל המנויים" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "מנויים" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 #, fuzzy msgid "All subscribers" msgstr "מנויים" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 #, fuzzy msgid "User ID" msgstr "מתשמש" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "חבר מאז" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 05ca7fa3cc..fa2896d12a 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:27+0000\n" +"PO-Revision-Date: 2010-04-08 23:08: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 (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -811,7 +811,7 @@ msgstr "Tutoho wužiwarja njeblokować" msgid "Yes" msgstr "Haj" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -911,7 +911,7 @@ msgid "Conversation" msgstr "Konwersacija" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Zdźělenki" @@ -1585,7 +1585,7 @@ msgstr "Wužiwar je hižo za skupinu zablokowany." msgid "User is not a member of group." msgstr "Wužiwar njeje čłon skupiny." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Wužiwarja za skupinu blokować" @@ -1682,19 +1682,19 @@ msgstr "Lisćina wužiwarjow w tutej skupinje." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Blokować" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej činić" @@ -1709,7 +1709,7 @@ msgstr "" msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Skupiny" @@ -2565,12 +2565,12 @@ msgstr "" msgid "People search" msgstr "Za ludźimi pytać" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "" @@ -3237,8 +3237,8 @@ msgstr "Organizacija" msgid "Description" msgstr "Wopisanje" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistika" @@ -3390,25 +3390,25 @@ msgstr "" msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Čłonojo" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Žadyn)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Wšitcy čłonojo" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Wutworjeny" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3418,7 +3418,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3427,7 +3427,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Administratorojo" @@ -5805,7 +5805,7 @@ msgstr "" msgid "Unknown" msgstr "Njeznaty" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonementy" @@ -5813,28 +5813,28 @@ msgstr "Abonementy" msgid "All subscriptions" msgstr "Wšě abonementy" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonenća" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Wšitcy abonenća" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "Wužiwarski ID" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Čłon wot" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Wšě skupiny" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index c21a0db8c3..e449469434 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:30+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:03+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -836,7 +836,7 @@ msgstr "Non blocar iste usator" msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Blocar iste usator" @@ -936,7 +936,7 @@ msgid "Conversation" msgstr "Conversation" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -1629,7 +1629,7 @@ msgstr "Le usator es ja blocate del gruppo." msgid "User is not a member of group." msgstr "Le usator non es membro del gruppo." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Blocar usator del gruppo" @@ -1731,19 +1731,19 @@ msgstr "Un lista de usatores in iste gruppo." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Blocar" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Facer le usator administrator del gruppo" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Facer administrator" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Facer iste usator administrator" @@ -1758,7 +1758,7 @@ msgstr "Chronologia de %s" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppos" @@ -2690,12 +2690,12 @@ msgstr "" msgid "People search" msgstr "Recerca de personas" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Etiquetta de personas invalide: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usatores auto-etiquettate con %1$s - pagina %2$d" @@ -3418,8 +3418,8 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Statisticas" @@ -3581,25 +3581,25 @@ msgstr "Syndication de notas pro le gruppo %s (Atom)" msgid "FOAF for %s group" msgstr "Amico de un amico pro le gruppo %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nulle)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Tote le membros" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Create" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3614,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:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3627,7 +3627,7 @@ msgstr "" "[StatusNet](http://status.net/). Su membros condivide breve messages super " "lor vita e interesses. " -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Administratores" @@ -6225,7 +6225,7 @@ msgstr "Etiquettas in le notas de %s" msgid "Unknown" msgstr "Incognite" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscriptiones" @@ -6233,28 +6233,28 @@ msgstr "Subscriptiones" msgid "All subscriptions" msgstr "Tote le subscriptiones" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscriptores" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Tote le subscriptores" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "ID del usator" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Membro depost" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "Media de cata die" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Tote le gruppos" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index e4500fd080..532f83c61b 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:33+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:06+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -843,7 +843,7 @@ msgstr "Opna á þennan notanda" msgid "Yes" msgstr "Já" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -946,7 +946,7 @@ msgid "Conversation" msgstr "" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Babl" @@ -1666,7 +1666,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "" @@ -1763,19 +1763,19 @@ msgstr "Listi yfir notendur í þessum hóp." msgid "Admin" msgstr "Stjórnandi" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Loka" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1790,7 +1790,7 @@ msgstr "Rás %s" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Hópar" @@ -2735,12 +2735,12 @@ msgstr "" msgid "People search" msgstr "Leit að fólki" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Ekki gilt persónumerki: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Notendur sjálfmerktir með %s - síða %d" @@ -3461,8 +3461,8 @@ msgstr "Uppröðun" msgid "Description" msgstr "Lýsing" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Tölfræði" @@ -3615,25 +3615,25 @@ msgstr "" msgid "FOAF for %s group" msgstr "%s hópurinn" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Meðlimir" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ekkert)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Allir meðlimir" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3643,7 +3643,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3652,7 +3652,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "" @@ -6174,7 +6174,7 @@ msgstr "Merki í babli %s" msgid "Unknown" msgstr "Óþekkt aðgerð" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Áskriftir" @@ -6182,28 +6182,28 @@ msgstr "Áskriftir" msgid "All subscriptions" msgstr "Allar áskriftir" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Áskrifendur" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Allir áskrifendur" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Meðlimur síðan" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Allir hópar" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index b2a3ff28a1..7b57b1cbdd 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:36+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:09+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -488,9 +488,9 @@ msgstr "Gruppi di %s" #. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s #: actions/apigrouplist.php:107 -#, fuzzy, php-format +#, php-format msgid "%1$s groups %2$s is a member of." -msgstr "Gruppi di cui %s fa parte" +msgstr "Gruppi del sito %1$s a cui %2$s è iscritto." #: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format @@ -837,7 +837,7 @@ msgstr "Non bloccare questo utente" msgid "Yes" msgstr "Sì" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Blocca questo utente" @@ -937,7 +937,7 @@ msgid "Conversation" msgstr "Conversazione" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Messaggi" @@ -1318,7 +1318,7 @@ msgstr "Annulla" #: actions/emailsettings.php:121 msgid "Email address" -msgstr "Indirizzi email" +msgstr "Indirizzo e-mail" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1633,7 +1633,7 @@ msgstr "L'utente è già bloccato dal gruppo." msgid "User is not a member of group." msgstr "L'utente non fa parte del gruppo." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Blocca l'utente dal gruppo" @@ -1735,19 +1735,19 @@ msgstr "Un elenco degli utenti in questo gruppo." msgid "Admin" msgstr "Amministra" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Blocca" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Rende l'utente amministratore del gruppo" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Rendi amm." -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" @@ -1762,7 +1762,7 @@ msgstr "Attività di %s" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppi" @@ -2689,12 +2689,12 @@ msgstr "" msgid "People search" msgstr "Cerca persone" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Non è un'etichetta valida di persona: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utenti auto-etichettati con %1$s - pagina %2$d" @@ -3418,8 +3418,8 @@ msgstr "Organizzazione" msgid "Description" msgstr "Descrizione" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistiche" @@ -3580,25 +3580,25 @@ msgstr "Feed dei messaggi per il gruppo %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF per il gruppo %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Membri" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(nessuno)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Tutti i membri" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Creato" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3614,7 +3614,7 @@ msgstr "" "stesso](%%%%action.register%%%%) per far parte di questo gruppo e di molti " "altri! ([Maggiori informazioni](%%%%doc.help%%%%))" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3626,7 +3626,7 @@ msgstr "" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " "[StatusNet](http://status.net/)." -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Amministratori" @@ -5616,7 +5616,7 @@ msgstr "Gruppo" #: lib/groupnav.php:101 msgid "Blocked" -msgstr "Bloccati" +msgstr "Bloccato" #: lib/groupnav.php:102 #, php-format @@ -6226,7 +6226,7 @@ msgstr "Etichette nei messaggi di %s" msgid "Unknown" msgstr "Sconosciuto" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abbonamenti" @@ -6234,28 +6234,28 @@ msgstr "Abbonamenti" msgid "All subscriptions" msgstr "Tutti gli abbonamenti" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abbonati" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Tutti gli abbonati" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "ID utente" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Membro dal" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "Media giornaliera" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Tutti i gruppi" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index f358370ba5..40fda1fa55 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,11 +12,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:39+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:13+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -833,7 +833,7 @@ msgstr "このユーザをアンブロックする" msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "このユーザをブロックする" @@ -933,7 +933,7 @@ msgid "Conversation" msgstr "会話" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "つぶやき" @@ -1633,7 +1633,7 @@ msgstr "ユーザはすでにグループからブロックされています。 msgid "User is not a member of group." msgstr "ユーザはグループのメンバーではありません。" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "グループからユーザをブロック" @@ -1734,19 +1734,19 @@ msgstr "このグループのユーザのリスト。" msgid "Admin" msgstr "管理者" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "ブロック" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "ユーザをグループの管理者にする" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "管理者にする" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "このユーザを管理者にする" @@ -1761,7 +1761,7 @@ msgstr "%s のタイムライン" msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上の %1$s のメンバーから更新する" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "グループ" @@ -2688,12 +2688,12 @@ msgstr "" msgid "People search" msgstr "ピープルサーチ" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "正しいタグではありません: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "ユーザ自身がつけたタグ %1$s - ページ %2$d" @@ -3415,8 +3415,8 @@ msgstr "組織" msgid "Description" msgstr "概要" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "統計データ" @@ -3579,25 +3579,25 @@ msgstr "%s グループのつぶやきフィード (Atom)" msgid "FOAF for %s group" msgstr "%s グループの FOAF" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "メンバー" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(なし)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "全てのメンバー" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "作成日" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3612,7 +3612,7 @@ msgstr "" "する短いメッセージを共有します。[今すぐ参加](%%%%action.register%%%%) してこ" "のグループの一員になりましょう! ([もっと読む](%%%%doc.help%%%%))" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3625,7 +3625,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" "する短いメッセージを共有します。" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "管理者" @@ -6208,7 +6208,7 @@ msgstr "%s のつぶやきのタグ" msgid "Unknown" msgstr "不明" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "フォロー" @@ -6216,28 +6216,28 @@ msgstr "フォロー" msgid "All subscriptions" msgstr "すべてのフォロー" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "フォローされている" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "すべてのフォローされている" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "ユーザID" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "利用開始日" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "全てのグループ" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 4d85372bf6..55d5c3645b 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:43+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:19+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -822,7 +822,7 @@ msgstr "이용자를 차단하지 않는다." msgid "Yes" msgstr "네, 맞습니다." -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -925,7 +925,7 @@ msgid "Conversation" msgstr "인증 코드" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "통지" @@ -1642,7 +1642,7 @@ msgstr "회원이 당신을 차단해왔습니다." msgid "User is not a member of group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "사용자를 차단합니다." @@ -1745,21 +1745,21 @@ msgstr "이 그룹의 회원리스트" msgid "Admin" msgstr "관리자" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "차단하기" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 #, fuzzy msgid "Make user an admin of the group" msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 #, fuzzy msgid "Make Admin" msgstr "관리자" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "이 이용자를 관리자로 만듦" @@ -1774,7 +1774,7 @@ msgstr "%s 타임라인" msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "그룹" @@ -2706,12 +2706,12 @@ msgstr "" msgid "People search" msgstr "사람 찾기" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "유효한 태그가 아닙니다: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "이용자 셀프 테크 %s - %d 페이지" @@ -3427,8 +3427,8 @@ msgstr "페이지수" msgid "Description" msgstr "설명" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "통계" @@ -3581,26 +3581,26 @@ msgstr "%s 그룹을 위한 공지피드 (Atom)" msgid "FOAF for %s group" msgstr "%s의 보낸쪽지함" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "회원" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(없습니다.)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "모든 회원" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "생성" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3610,7 +3610,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3621,7 +3621,7 @@ msgstr "" "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" "Micro-blogging)의 사용자 그룹입니다. " -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 #, fuzzy msgid "Admins" msgstr "관리자" @@ -6146,7 +6146,7 @@ msgstr "%s의 게시글의 태그" msgid "Unknown" msgstr "알려지지 않은 행동" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "구독" @@ -6154,29 +6154,29 @@ msgstr "구독" msgid "All subscriptions" msgstr "모든 예약 구독" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "구독자" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "모든 구독자" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 #, fuzzy msgid "User ID" msgstr "이용자" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "가입한 때" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "모든 그룹" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index a2b691bfd7..3e5167464d 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:54:54+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:23+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index dfc9c43974..d9c7adf0a4 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:50+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:26+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 (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -484,9 +484,9 @@ msgstr "%s sine grupper" #. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s #: actions/apigrouplist.php:107 -#, fuzzy, php-format +#, php-format msgid "%1$s groups %2$s is a member of." -msgstr "%s er ikke medlem av noen gruppe." +msgstr "%1$s grupper %2$s er et medlem av." #: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format @@ -828,7 +828,7 @@ msgstr "Ikke blokker denne brukeren" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Blokker denne brukeren" @@ -928,7 +928,7 @@ msgid "Conversation" msgstr "Samtale" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notiser" @@ -1116,9 +1116,8 @@ msgid "Content" msgstr "Innhold" #: actions/designadminpanel.php:523 lib/designsettings.php:204 -#, fuzzy msgid "Sidebar" -msgstr "Søk" +msgstr "Sidelinje" #: actions/designadminpanel.php:536 lib/designsettings.php:217 msgid "Text" @@ -1224,11 +1223,11 @@ msgstr "Hjemmeside for organisasjon kreves." #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." -msgstr "" +msgstr "Anrop er for langt." #: actions/editapplication.php:225 actions/newapplication.php:215 msgid "Callback URL is not valid." -msgstr "" +msgstr "Anrops-URL er ikke gyldig." #: actions/editapplication.php:258 msgid "Could not update application." @@ -1411,7 +1410,7 @@ msgstr "" #: actions/emailsettings.php:379 actions/imsettings.php:351 #: actions/smssettings.php:370 msgid "No pending confirmation to cancel." -msgstr "" +msgstr "Ingen ventende bekreftelse å avbryte." #: actions/emailsettings.php:383 actions/imsettings.php:355 msgid "That is the wrong IM address." @@ -1442,7 +1441,7 @@ msgstr "" #: actions/emailsettings.php:459 actions/smssettings.php:531 msgid "Incoming email address removed." -msgstr "" +msgstr "Inkommende e-postadresse fjernet." #: actions/emailsettings.php:481 actions/smssettings.php:555 msgid "New incoming email address added." @@ -1468,17 +1467,21 @@ msgstr "Populære notiser, side %d" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." -msgstr "" +msgstr "De mest populære notisene på nettstedet akkurat nå." #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" +"Favorittnotiser vises på denne siden, men det er ingen som har noen " +"favoritter ennå." #: 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 "" +"Vær den første til å legge en notis til dine favoritter ved å klikke på " +"favoritt-knappen ved siden av notisen du liker." #: actions/favorited.php:156 #, php-format @@ -1486,6 +1489,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" msgstr "" +"Hvorfor ikke [registrere en konto](%%action.register%%) og vær den første " +"til å legge notisen til dine favoritter." #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 @@ -1614,7 +1619,7 @@ msgstr "Bruker er allerede blokkert fra gruppe." msgid "User is not a member of group." msgstr "Bruker er ikke et medlem av gruppa." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Blokker bruker fra gruppe" @@ -1710,19 +1715,19 @@ msgstr "En liste over brukerne i denne gruppen." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Gjør brukeren til en administrator for gruppen" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Gjør til administrator" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Gjør denne brukeren til administrator" @@ -1737,7 +1742,7 @@ msgstr "%s tidslinje" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -2638,12 +2643,12 @@ msgstr "" msgid "People search" msgstr "Personsøk" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ugyldig e-postadresse" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Mikroblogg av %s" @@ -3345,8 +3350,8 @@ msgstr "Organisasjon" msgid "Description" msgstr "Beskrivelse" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistikk" @@ -3499,25 +3504,25 @@ msgstr "Notismating for %s gruppe (Atom)" msgid "FOAF for %s group" msgstr "Klarte ikke å lagre profil." -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Medlemmer" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Alle medlemmer" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Opprettet" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3533,7 +3538,7 @@ msgstr "" "%%%) for å bli medlem av denne gruppen og mange fler. ([Les mer](%%%%doc.help" "%%%%))" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3546,7 +3551,7 @@ msgstr "" "programvareverktøyet [StatusNet](http://status.net/). Dets medlemmer deler " "korte meldinger om deres liv og interesser. " -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Administratorer" @@ -6056,7 +6061,7 @@ msgstr "" msgid "Unknown" msgstr "Ukjent" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnement" @@ -6064,28 +6069,28 @@ msgstr "Abonnement" msgid "All subscriptions" msgstr "Alle abonnementer" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnenter" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Alle abonnenter" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "Bruker-ID" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Medlem siden" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Alle grupper" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 39caa923fd..93638f0720 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:55:04+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:32+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 12b3089fb9..70073c52b2 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -1,5 +1,6 @@ # Translation of StatusNet to Norwegian Nynorsk # +# Author@translatewiki.net: Nghtwlkr # -- # This file is distributed under the same license as the StatusNet package. # @@ -8,11 +9,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:55:53+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:29+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 (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -846,7 +847,7 @@ msgstr "Lås opp brukaren" msgid "Yes" msgstr "Jau" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -951,7 +952,7 @@ msgid "Conversation" msgstr "Stadfestingskode" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notisar" @@ -1685,7 +1686,7 @@ msgstr "Brukar har blokkert deg." msgid "User is not a member of group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "Blokker brukaren" @@ -1790,21 +1791,21 @@ msgstr "Ei liste over brukarane i denne gruppa." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 #, fuzzy msgid "Make user an admin of the group" msgstr "Du må være administrator for å redigere gruppa" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 #, fuzzy msgid "Make Admin" msgstr "Administrator" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1819,7 +1820,7 @@ msgstr "%s tidsline" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -2619,9 +2620,8 @@ msgid "Site" msgstr "Invitér" #: actions/pathsadminpanel.php:238 -#, fuzzy msgid "Server" -msgstr "Gjenopprett" +msgstr "Tenar" #: actions/pathsadminpanel.php:238 msgid "Site's server hostname." @@ -2758,12 +2758,12 @@ msgstr "" msgid "People search" msgstr "Søk etter folk" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Ikkje gyldig merkelapp: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Brukarar sjølv-merka med %s, side %d" @@ -3490,8 +3490,8 @@ msgstr "Paginering" msgid "Description" msgstr "Beskriving" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistikk" @@ -3644,26 +3644,26 @@ msgstr "Notisstraum for %s gruppa" msgid "FOAF for %s group" msgstr "Utboks for %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Alle medlemmar" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "Lag" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3673,7 +3673,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3684,7 +3684,7 @@ msgstr "" "**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 #, fuzzy msgid "Admins" msgstr "Administrator" @@ -6225,7 +6225,7 @@ msgstr "Merkelappar i %s sine notisar" msgid "Unknown" msgstr "Uventa handling." -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tingingar" @@ -6233,29 +6233,29 @@ msgstr "Tingingar" msgid "All subscriptions" msgstr "Alle tingingar" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tingarar" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Tingarar" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 #, fuzzy msgid "User ID" msgstr "Brukar" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Medlem sidan" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Alle gruppar" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 922767c6d0..e464140945 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:55:08+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:36+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ 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 (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 1ef583e91d..7647967b00 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:56:03+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:39+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -836,7 +836,7 @@ msgstr "Não bloquear este utilizador" msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -937,7 +937,7 @@ msgid "Conversation" msgstr "Conversação" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -1655,7 +1655,7 @@ msgstr "Acesso do utilizador ao grupo já foi bloqueado." msgid "User is not a member of group." msgstr "Utilizador não é membro do grupo." -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Bloquear acesso do utilizador ao grupo" @@ -1757,19 +1757,19 @@ msgstr "Uma lista dos utilizadores neste grupo." msgid "Admin" msgstr "Gestor" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Tornar utilizador o gestor do grupo" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Tornar Gestor" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" @@ -1784,7 +1784,7 @@ msgstr "Notas de %s" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -2725,12 +2725,12 @@ msgstr "" msgid "People search" msgstr "Pesquisa de pessoas" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Categoria de pessoas inválida: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utilizadores auto-categorizados com %1$s - página %2$d" @@ -3461,8 +3461,8 @@ msgstr "Paginação" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Estatísticas" @@ -3624,25 +3624,25 @@ msgstr "Fonte de notas do grupo %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF do grupo %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Criado" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3658,7 +3658,7 @@ msgstr "" "[Registe-se agora](%%action.register%%) para se juntar a este grupo e a " "muitos mais! ([Saber mais](%%doc.help%%))" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3671,7 +3671,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:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Gestores" @@ -6305,7 +6305,7 @@ msgstr "Categorias nas notas de %s" msgid "Unknown" msgstr "Desconhecida" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscrições" @@ -6313,28 +6313,28 @@ msgstr "Subscrições" msgid "All subscriptions" msgstr "Todas as subscrições" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscritores" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Todos os subscritores" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "ID do utilizador" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Membro desde" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Todos os grupos" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 9de76c2cfa..f509d5082b 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -13,11 +13,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:56:06+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:43+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 (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -843,7 +843,7 @@ msgstr "Não bloquear este usuário" msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuário" @@ -943,7 +943,7 @@ msgid "Conversation" msgstr "Conversa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Mensagens" @@ -1641,7 +1641,7 @@ msgstr "O usuário já está bloqueado no grupo." msgid "User is not a member of group." msgstr "O usuário não é um membro do grupo" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 msgid "Block user from group" msgstr "Bloquear o usuário no grupo" @@ -1744,19 +1744,19 @@ msgstr "Uma lista dos usuários deste grupo." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "Tornar o usuário um administrador do grupo" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "Tornar administrador" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "Torna este usuário um administrador" @@ -1771,7 +1771,7 @@ msgstr "Mensagens de %s" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -2708,12 +2708,12 @@ msgstr "" msgid "People search" msgstr "Procurar pessoas" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, php-format msgid "Not a valid people tag: %s" msgstr "Não é uma etiqueta de pessoa válida: %s" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" @@ -3440,8 +3440,8 @@ msgstr "Organização" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Estatísticas" @@ -3603,25 +3603,25 @@ msgstr "Fonte de mensagens do grupo %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF para o grupo %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 msgid "Created" msgstr "Criado" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3637,7 +3637,7 @@ msgstr "" "para se tornar parte deste grupo e muito mais! ([Saiba mais](%%%%doc.help%%%" "%))" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3650,7 +3650,7 @@ msgstr "" "[StatusNet](http://status.net/). Seus membros compartilham mensagens curtas " "sobre suas vidas e interesses. " -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "Administradores" @@ -6253,7 +6253,7 @@ msgstr "Etiquetas nas mensagens de %s" msgid "Unknown" msgstr "Desconhecido" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Assinaturas" @@ -6261,28 +6261,28 @@ msgstr "Assinaturas" msgid "All subscriptions" msgstr "Todas as assinaturas" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Assinantes" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 msgid "All subscribers" msgstr "Todos os assinantes" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "ID do usuário" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Membro desde" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "Média diária" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "Todos os grupos" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index f3d1630683..b1c52551fb 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -13,11 +13,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:55:17+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:49+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 53fdfd6476..b0696d8b8c 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 23:05+0000\n" +"POT-Creation-Date: 2010-04-08 23:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index fa45376a2c..1686d62f49 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:55:20+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:52+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 71dbc2c277..838c40a7d0 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:55:23+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:56+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index cf73e25784..73571c19bf 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -10,11 +10,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:56:20+0000\n" +"PO-Revision-Date: 2010-04-08 23:09:59+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -852,7 +852,7 @@ msgstr "Böyle bir kullanıcı yok." msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." @@ -958,7 +958,7 @@ msgid "Conversation" msgstr "Yer" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Durum mesajları" @@ -1678,7 +1678,7 @@ msgstr "Kullanıcının profili yok." msgid "User is not a member of group." msgstr "Bize o profili yollamadınız" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "Böyle bir kullanıcı yok." @@ -1782,19 +1782,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "" msgid "Updates from members of %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2721,12 +2721,12 @@ msgstr "" msgid "People search" msgstr "Kişi Arama" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Geçersiz bir eposta adresi." -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "%s adli kullanicinin durum mesajlari" @@ -3429,8 +3429,8 @@ msgstr "Yer" msgid "Description" msgstr "Abonelikler" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "İstatistikler" @@ -3584,27 +3584,27 @@ msgstr "%s için durum RSS beslemesi" msgid "FOAF for %s group" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Üyelik başlangıcı" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "Yarat" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3614,7 +3614,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3623,7 +3623,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "" @@ -6138,7 +6138,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonelikler" @@ -6146,29 +6146,29 @@ msgstr "Abonelikler" msgid "All subscriptions" msgstr "Bütün abonelikler" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abone olanlar" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 #, fuzzy msgid "All subscribers" msgstr "Abone olanlar" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Üyelik başlangıcı" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index e1c751f7b5..c03a801f63 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-06 22:55:29+0000\n" +"PO-Revision-Date: 2010-04-08 23:10:03+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 2a51f84537..7092994ed8 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -8,11 +8,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:56:28+0000\n" +"PO-Revision-Date: 2010-04-08 23:10:07+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -857,7 +857,7 @@ msgstr "Bỏ chặn người dùng này" msgid "Yes" msgstr "Có" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Ban user" @@ -962,7 +962,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:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Tin nhắn" @@ -1718,7 +1718,7 @@ msgstr "Người dùng không có thông tin." msgid "User is not a member of group." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "Ban user" @@ -1825,20 +1825,20 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 #, fuzzy msgid "Make user an admin of the group" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 #, fuzzy msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" @@ -1854,7 +1854,7 @@ msgstr "Dòng tin nhắn của %s" 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:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 #, fuzzy msgid "Groups" @@ -2820,12 +2820,12 @@ msgstr "" msgid "People search" msgstr "Tìm kiếm nhiều người" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Địa chỉ email không hợp lệ." -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Dòng tin nhắn cho %s" @@ -3548,8 +3548,8 @@ msgstr "Thư mời đã gửi" msgid "Description" msgstr "Mô tả" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "Số liệu thống kê" @@ -3705,27 +3705,27 @@ msgstr "Dòng tin nhắn cho %s" msgid "FOAF for %s group" msgstr "Hộp thư đi của %s" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 msgid "Members" msgstr "Thành viên" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 #, fuzzy msgid "All members" msgstr "Thành viên" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "Tạo" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3735,7 +3735,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3744,7 +3744,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "" @@ -6368,7 +6368,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:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tôi theo bạn này" @@ -6376,29 +6376,29 @@ msgstr "Tôi theo bạn này" msgid "All subscriptions" msgstr "Tất cả đăng nhận" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Bạn này theo tôi" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 #, fuzzy msgid "All subscribers" msgstr "Bạn này theo tôi" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "Gia nhập từ" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 #, fuzzy msgid "All groups" msgstr "Nhóm" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index b2396c7032..19e4232412 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:56:31+0000\n" +"PO-Revision-Date: 2010-04-08 23:10:11+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -851,7 +851,7 @@ msgstr "取消阻止次用户" msgid "Yes" msgstr "是" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "阻止该用户" @@ -958,7 +958,7 @@ msgid "Conversation" msgstr "确认码" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "通告" @@ -1696,7 +1696,7 @@ msgstr "用户没有个人信息。" msgid "User is not a member of group." msgstr "您未告知此个人信息" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "阻止用户" @@ -1802,21 +1802,21 @@ msgstr "该组成员列表。" msgid "Admin" msgstr "admin管理员" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "阻止" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 #, fuzzy msgid "Make user an admin of the group" msgstr "只有admin才能编辑这个组" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 #, fuzzy msgid "Make Admin" msgstr "admin管理员" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1831,7 +1831,7 @@ msgstr "%s 时间表" msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "组" @@ -2763,12 +2763,12 @@ msgstr "" msgid "People search" msgstr "搜索用户" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "不是有效的电子邮件" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "用户自加标签 %s - 第 %d 页" @@ -3483,8 +3483,8 @@ msgstr "分页" msgid "Description" msgstr "描述" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "统计" @@ -3639,27 +3639,27 @@ msgstr "%s 的通告聚合" msgid "FOAF for %s group" msgstr "%s 的发件箱" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "注册于" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(没有)" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "所有成员" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "创建" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3669,7 +3669,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3680,7 +3680,7 @@ msgstr "" "**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 #, fuzzy msgid "Admins" msgstr "admin管理员" @@ -6241,7 +6241,7 @@ msgstr "%s's 的消息的标签" msgid "Unknown" msgstr "未知动作" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "订阅" @@ -6249,30 +6249,30 @@ msgstr "订阅" msgid "All subscriptions" msgstr "所有订阅" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "订阅者" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 #, fuzzy msgid "All subscribers" msgstr "订阅者" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 #, fuzzy msgid "User ID" msgstr "用户" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "用户始于" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "所有组" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 60255e0311..b6552280a2 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -8,11 +8,11 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-05 18:56:34+0000\n" +"PO-Revision-Date: 2010-04-08 23:10:17+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 (r64621); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64753); 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" @@ -840,7 +840,7 @@ msgstr "無此使用者" msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "無此使用者" @@ -946,7 +946,7 @@ msgid "Conversation" msgstr "地點" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:224 lib/searchgroupnav.php:82 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -1659,7 +1659,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:323 +#: actions/groupblock.php:136 actions/groupmembers.php:341 #, fuzzy msgid "Block user from group" msgstr "無此使用者" @@ -1761,19 +1761,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:355 lib/blockform.php:69 +#: actions/groupmembers.php:373 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:450 +#: actions/groupmembers.php:468 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:482 +#: actions/groupmembers.php:500 msgid "Make this user an admin" msgstr "" @@ -1788,7 +1788,7 @@ msgstr "" msgid "Updates from members of %1$s on %2$s!" msgstr "&s的微型部落格" -#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244 +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2669,12 +2669,12 @@ msgstr "" msgid "People search" msgstr "" -#: actions/peopletag.php:70 +#: actions/peopletag.php:68 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "此信箱無效" -#: actions/peopletag.php:144 +#: actions/peopletag.php:142 #, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "&s的微型部落格" @@ -3358,8 +3358,8 @@ msgstr "地點" msgid "Description" msgstr "所有訂閱" -#: actions/showapplication.php:192 actions/showgroup.php:439 -#: lib/profileaction.php:182 +#: actions/showapplication.php:192 actions/showgroup.php:444 +#: lib/profileaction.php:187 msgid "Statistics" msgstr "" @@ -3512,27 +3512,27 @@ msgstr "" msgid "FOAF for %s group" msgstr "無此通知" -#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "何時加入會員的呢?" -#: actions/showgroup.php:396 lib/profileaction.php:117 -#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:402 +#: actions/showgroup.php:404 msgid "All members" msgstr "" -#: actions/showgroup.php:442 +#: actions/showgroup.php:447 #, fuzzy msgid "Created" msgstr "新增" -#: actions/showgroup.php:458 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3542,7 +3542,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:464 +#: actions/showgroup.php:469 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3551,7 +3551,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:492 +#: actions/showgroup.php:497 msgid "Admins" msgstr "" @@ -6028,7 +6028,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -6036,29 +6036,29 @@ msgstr "" msgid "All subscriptions" msgstr "所有訂閱" -#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90 +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:159 +#: lib/profileaction.php:161 #, fuzzy msgid "All subscribers" msgstr "所有訂閱" -#: lib/profileaction.php:186 +#: lib/profileaction.php:191 msgid "User ID" msgstr "" -#: lib/profileaction.php:191 +#: lib/profileaction.php:196 msgid "Member since" msgstr "何時加入會員的呢?" #. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:230 +#: lib/profileaction.php:235 msgid "Daily average" msgstr "" -#: lib/profileaction.php:259 +#: lib/profileaction.php:264 msgid "All groups" msgstr "" From cb38163e8d18fece4bc331e468a173f405f532eb Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 9 Apr 2010 01:16:41 +0200 Subject: [PATCH 09/80] Update supported languages: * fix name for Irish/ga * add Galician/gl --- lib/language.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/language.php b/lib/language.php index 6fb6222a11..8009adc9b7 100644 --- a/lib/language.php +++ b/lib/language.php @@ -305,7 +305,8 @@ function get_all_languages() { 'fi' => array('q' => 1, 'lang' => 'fi', 'name' => 'Finnish', 'direction' => 'ltr'), 'fa' => array('q' => 1, 'lang' => 'fa', 'name' => 'Persian', 'direction' => 'rtl'), 'fr-fr' => array('q' => 1, 'lang' => 'fr', 'name' => 'French', 'direction' => 'ltr'), - 'ga' => array('q' => 0.5, 'lang' => 'ga', 'name' => 'Galician', 'direction' => 'ltr'), + 'ga' => array('q' => 0.5, 'lang' => 'ga', 'name' => 'Irish', 'direction' => 'ltr'), + 'gl' => array('q' => 0.8, 'lang' => 'gl', 'name' => 'Galician', 'direction' => 'ltr'), 'he' => array('q' => 0.5, 'lang' => 'he', 'name' => 'Hebrew', 'direction' => 'rtl'), 'hsb' => array('q' => 0.8, 'lang' => 'hsb', 'name' => 'Upper Sorbian', 'direction' => 'ltr'), 'ia' => array('q' => 0.8, 'lang' => 'ia', 'name' => 'Interlingua', 'direction' => 'ltr'), From 857db1fabe8dc1d4420abad74d574c536b120ad5 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 9 Apr 2010 01:29:48 +0200 Subject: [PATCH 10/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans * add new language Galician Signed-off-by: Siebrand Mazeland --- locale/gl/LC_MESSAGES/statusnet.po | 6251 ++++++++++++++++++++++++++++ locale/statusnet.pot | 2 +- 2 files changed, 6252 insertions(+), 1 deletion(-) create mode 100644 locale/gl/LC_MESSAGES/statusnet.po diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po new file mode 100644 index 0000000000..4476df821e --- /dev/null +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -0,0 +1,6251 @@ +# Translation of StatusNet to Galician +# +# Author@translatewiki.net: Gallaecio +# Author@translatewiki.net: Toliño +# -- +# 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-04-06 22:53+0000\n" +"PO-Revision-Date: 2010-04-08 23:24:51+0000\n" +"Language-Team: Galician\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\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 "Acceso" + +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 +msgid "Site access settings" +msgstr "Configuración do acceso ao sitio" + +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +msgid "Registration" +msgstr "Rexistro" + +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Prohibir que os usuarios anónimos (sen sesión iniciada) vexan o sitio?" + +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +msgctxt "LABEL" +msgid "Private" +msgstr "Privado" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "Que o rexistro só se poida facer previa invitación." + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Só por invitación" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "Desactivar os novos rexistros." + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Pechado" + +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +msgid "Save access settings" +msgstr "Gardar a configuración de acceso" + +#: actions/accessadminpanel.php:203 +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. 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 "Non existe tal páxina" + +#: 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:72 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:71 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:40 +#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: lib/mailbox.php:82 lib/profileaction.php:77 +msgid "No such user." +msgstr "Non existe tal usuario." + +#. 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 e amigos, páxina %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 e amigos" + +#. TRANS: %1$s is user nickname +#: actions/all.php:103 +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Fonte de novas dos amigos de %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 "Fonte de novas dos amigos de %s (RSS 2.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:121 +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Fonte de novas dos amigos de %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 "" +"Esta é a liña do tempo de %s e amigos pero ninguén publicou nada aínda." + +#: actions/all.php:139 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" +"Probe a subscribirse a máis xente, [únase a un grupo](%%action.groups%%) ou " +"publique algo." + +#. 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 "" +"Pode probar a [facerlle un aceno a %1$s](../%2$s) dende o seu perfil ou " +"[publicar algo dirixido a el ou ela](%%%%action.newnotice%%%%?" +"status_textarea=%3$s)." + +#: 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 "" +"Por que non [rexistrar unha conta](%%%%action.register%%%%) e entón facerlle " +"un aceno a %s ou publicar unha nota dirixida a el ou ela?" + +#. TRANS: H1 text +#: actions/all.php:178 +msgid "You and friends" +msgstr "Vostede e mailos seus amigos" + +#: 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 "Actualizacións de %1$s e amigos en %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:136 +#: 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:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 +#: actions/apitimelineuser.php:162 actions/apiusershow.php:101 +msgid "API method not found." +msgstr "Non se atopou o método da 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/apimediaupload.php:67 +#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:118 +msgid "This method requires a POST." +msgstr "Este método require un POST." + +#: actions/apiaccountupdatedeliverydevice.php:105 +msgid "" +"You must specify a parameter named 'device' with a value of one of: sms, im, " +"none" +msgstr "" +"Ten que especificar un parámetro chamado \"device\" cun destes valores: sms, " +"im, none" + +#: actions/apiaccountupdatedeliverydevice.php:132 +msgid "Could not update user." +msgstr "Non se puido actualizar o usuario." + +#: 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 "O usuario non ten perfil." + +#: actions/apiaccountupdateprofile.php:147 +msgid "Could not save profile." +msgstr "Non se puido gardar o perfil." + +#: actions/apiaccountupdateprofilebackgroundimage.php:108 +#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 +#: 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 "" +"O servidor non puido manexar tantos datos POST (%s bytes) por mor da súa " +"configuración actual." + +#: 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 "Non se puido gardar a súa configuración de deseño." + +#: actions/apiaccountupdateprofilebackgroundimage.php:187 +#: actions/apiaccountupdateprofilecolors.php:142 +msgid "Could not update your design." +msgstr "Non se puido actualizar o seu deseño." + +#: actions/apiblockcreate.php:105 +msgid "You cannot block yourself!" +msgstr "Non pode bloquearse a si mesmo!" + +#: actions/apiblockcreate.php:126 +msgid "Block user failed." +msgstr "Non se puido bloquear o usuario." + +#: actions/apiblockdestroy.php:114 +msgid "Unblock user failed." +msgstr "Non se puido desbloquear o usuario." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "Mensaxes directas de %s" + +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "Todas as mensaxes directas enviadas por %s" + +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Mensaxes directas a %s" + +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "Todas as mensaxes directas enviadas a %s" + +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "A mensaxe non ten texto!" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" +"Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres." + +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "Non se atopou o destinatario." + +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" +"Non pode enviar mensaxes directas a usuarios que non sexan amigos seus." + +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "Non se atopou ningún estado con esa ID." + +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite." +msgstr "Este estado xa é dos favoritos." + +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +msgid "Could not create favorite." +msgstr "Non se puido crear o favorito." + +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite." +msgstr "Ese estado non é un dos favoritos." + +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Non se puido eliminar o favorito." + +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Non se puido seguir o usuario: non se atopou." + +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Non se puido seguir o usuario: %s xa está na súa lista." + +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." +msgstr "Non se puido deixar de seguir o usuario: non se atopou." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself." +msgstr "Non pode deixar de seguirse a si mesmo." + +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "Deben fornecerse dúas identificacións ou nomes de usuario." + +#: actions/apifriendshipsshow.php:134 +msgid "Could not determine source user." +msgstr "Non se puido determinar o usuario de orixe." + +#: actions/apifriendshipsshow.php:142 +msgid "Could not find target user." +msgstr "Non se puido atopar o usuario de destino." + +#: 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 "" +"O alcume debe ter só letras en minúscula e números, e non pode ter espazos " +"en branco." + +#: 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 "Ese alcume xa está en uso. Probe con outro." + +#: 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 "O formato do alcume non é correcto." + +#: 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 "O URL da páxina persoal non é correcto." + +#: 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 "O nome completo é longo de máis (o máximo son 255 caracteres)." + +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 +#: actions/newapplication.php:172 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "A descrición é longa de máis (o máximo son %d caracteres)." + +#: 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 "A localidade é longa de máis (o máximo son 255 caracteres)." + +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Demasiados pseudónimos! O número máximo é %d." + +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Pseudónimo inválido: \"%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 "O pseudónimo \"%s\" xa se está a usar. Proba con outro." + +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "O pseudónimo non pode coincidir co alcume." + +#: 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 "Non se atopou o grupo!" + +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 +msgid "You are already a member of that group." +msgstr "Xa forma parte dese grupo." + +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +msgid "You have been blocked from that group by the admin." +msgstr "O administrador bloqueouno nese grupo." + +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "Vostede non pertence a este grupo." + +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 +#, php-format +msgid "Could not remove user %1$s from group %2$s." +msgstr "O usuario %1$s non se puido eliminar do grupo %2$s." + +#. TRANS: %s is a user name +#: actions/apigrouplist.php:97 +#, php-format +msgid "%s's groups" +msgstr "Os grupos de %s" + +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:107 +#, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "Grupos de %1$s aos que pertence %2$s." + +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" +msgstr "grupos %s" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "grupos en %s" + +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Non se forneceu o parámetro oauth_token." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Pase incorrecto." + +#: 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:350 +#: 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 "Houbo un erro co seu pase. Inténteo de novo." + +#: actions/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "O alcume ou o contrasinal son incorrectos!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" +"Houbo un erro na base de datos ao intentar borrar o usuario da aplicación " +"OAuth." + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" +"Houbo un erro na base de datos ao intentar inserir o usuario da aplicación " +"OAuth." + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "Autorizouse a ficha da solicitude %s. Intercámbiea por un pase." + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "Denegouse e revogouse a ficha da solicitude %s." + +#: 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 "Envío de formulario inesperado." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Unha aplicación quere conectarse á súa conta" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Permitir ou denegar o acceso" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"A aplicación %1$s de %2$s quere poder " +"%3$s os datos da súa conta %4$s. Só debería permitir o " +"acceso á súa conta %4$s a xente de confianza." + +#: actions/apioauthauthorize.php:310 lib/action.php:437 +msgid "Account" +msgstr "Conta" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:245 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:132 +msgid "Nickname" +msgstr "Alcume" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Contrasinal" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Denegar" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Permitir" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Permitir ou denegar o acceso á información da súa conta." + +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Este método require un POST ou un DELETE." + +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Non pode borrar o estado doutro usuario." + +#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Non existe tal nota." + +#: actions/apistatusesretweet.php:83 +msgid "Cannot repeat your own notice." +msgstr "Non pode repetir a súa propia nota." + +#: actions/apistatusesretweet.php:91 +msgid "Already repeated that notice." +msgstr "Xa repetiu esa nota." + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "Borrouse o estado." + +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "Non se atopou ningún estado con esa ID." + +#: 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 "Iso é longo de máis. A nota non pode exceder os %d caracteres." + +#: actions/apistatusesupdate.php:202 +msgid "Not found" +msgstr "Non se atopou" + +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" +"A lonxitude máxima das notas é de %d caracteres, incluído o URL do dato " +"adxunto." + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "Formato non soportado." + +#: actions/apitimelinefavorites.php:109 +#, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s / Favoritos de %2$s" + +#: actions/apitimelinefavorites.php:118 +#, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "%1$s actualizacións marcadas como favoritas por %2$s / %2$s." + +#: actions/apitimelinementions.php:117 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Actualizacións que mencionan %2$s" + +#: actions/apitimelinementions.php:130 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s actualizacións que responden a actualizacións de %2$s / %3$s." + +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "Liña do tempo pública de %s" + +#: actions/apitimelinepublic.php:112 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s actualizacións de todos!" + +#: actions/apitimelineretweetedtome.php:111 +#, php-format +msgid "Repeated to %s" +msgstr "Repetiu a %s" + +#: actions/apitimelineretweetsofme.php:114 +#, php-format +msgid "Repeats of %s" +msgstr "Repeticións de %s" + +#: actions/apitimelinetag.php:104 actions/tag.php:67 +#, php-format +msgid "Notices tagged with %s" +msgstr "Notas etiquetadas con %s" + +#: actions/apitimelinetag.php:106 actions/tagrss.php:65 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Actualizacións etiquetadas con %1$s en %2$s!" + +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non se atopou." + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "Non existe tal dato adxunto." + +#: 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 "Sen alcume." + +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Sen tamaño." + +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Tamaño non válido." + +#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: 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 "" +"Pode cargar o seu avatar personalizado. O tamaño máximo para o ficheiro é de " +"%s." + +#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +#: actions/userrss.php:106 +msgid "User without matching profile" +msgstr "O usuario non ten un perfil correspondente" + +#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#: actions/grouplogo.php:254 +msgid "Avatar settings" +msgstr "Configuración do avatar" + +#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 +msgid "Original" +msgstr "Orixinal" + +#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 +msgid "Preview" +msgstr "Vista previa" + +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:659 +msgid "Delete" +msgstr "Borrar" + +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +msgid "Upload" +msgstr "Cargar" + +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +msgid "Crop" +msgstr "Recortar" + +#: actions/avatarsettings.php:305 +msgid "No file uploaded." +msgstr "Non se subiu ficheiro ningún." + +#: actions/avatarsettings.php:332 +msgid "Pick a square area of the image to be your avatar" +msgstr "Escolla unha zona cadrada da imaxe para usala como avatar" + +#: actions/avatarsettings.php:347 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "Perdéronse os datos do ficheiro." + +#: actions/avatarsettings.php:370 +msgid "Avatar updated." +msgstr "Actualizouse o avatar." + +#: actions/avatarsettings.php:373 +msgid "Failed updating avatar." +msgstr "Non se puido actualizar o avatar." + +#: actions/avatarsettings.php:397 +msgid "Avatar deleted." +msgstr "Borrouse o avatar." + +#: actions/block.php:69 +msgid "You already blocked that user." +msgstr "Xa bloqueou ese usuario." + +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +msgid "Block user" +msgstr "Bloquear o usuario" + +#: 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 "" +"Está seguro de querer bloquear este usuario? Unha vez feito deixará de estar " +"subscrito a vostede mentres siga bloqueado, e vostede non recibirá ningunha " +"das súas respostas." + +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 +#: actions/groupblock.php:178 +msgid "No" +msgstr "Non" + +#: actions/block.php:143 actions/deleteuser.php:150 +msgid "Do not block this user" +msgstr "Non bloquear este usuario" + +#: 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 "Si" + +#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +msgid "Block this user" +msgstr "Bloquear este usuario" + +#: actions/block.php:167 +msgid "Failed to save block information." +msgstr "Non se puido gardar a información do bloqueo." + +#: 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:162 +#: lib/command.php:358 +msgid "No such group." +msgstr "Non existe tal grupo." + +#: actions/blockedfromgroup.php:97 +#, php-format +msgid "%s blocked profiles" +msgstr "%s perfís bloqueados" + +#: actions/blockedfromgroup.php:100 +#, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%1$s perfís bloqueados, páxina %2$d" + +#: actions/blockedfromgroup.php:115 +msgid "A list of the users blocked from joining this group." +msgstr "Unha lista de usuarios bloqueados fronte á unión a este grupo." + +#: actions/blockedfromgroup.php:288 +msgid "Unblock user from group" +msgstr "Desbloquear o usuario do grupo" + +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +msgid "Unblock" +msgstr "Desbloquear" + +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +msgid "Unblock this user" +msgstr "Desbloquear este usuario" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "Publicar en " + +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Sen código de confirmación." + +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "Non se atopou o código de confirmación." + +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Ese código de confirmación non é para vostede!" + +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "Non se recoñeceu o tipo de enderezo %s" + +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Ese enderezo xa se confirmou." + +#: 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 "Non se puido actualizar o usuario." + +#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Non se puido borrar a confirmación por correo electrónico." + +#: actions/confirmaddress.php:144 +msgid "Confirm address" +msgstr "Confirmar o enderezo" + +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Confirmouse o enderezo \"%s\" para a súa conta." + +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "Conversa" + +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 +msgid "Notices" +msgstr "Notas" + +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Ten que iniciar sesión para borrar unha aplicación." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "Non se atopou a aplicación." + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Non é o dono desa aplicación." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1219 +msgid "There was a problem with your session token." +msgstr "Houbo un problema co seu pase." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Borrar a aplicación" + +#: 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 "" +"Está seguro de querer borrar esta aplicación? Se o fai, borrará todos os " +"datos da aplicación da base de datos, incluídas todas as conexións do " +"usuario existentes." + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Non borrar a aplicación" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Borrar a aplicación" + +#. 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 "Non iniciou sesión." + +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Non se pode borrar esta nota." + +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Está a piques de borrar unha nota definitivamente. Unha vez feito, non se " +"poderá recuperar." + +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Borrar a nota" + +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Está seguro de querer borrar esta nota?" + +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "Non borrar esta nota" + +#: actions/deletenotice.php:146 lib/noticelist.php:659 +msgid "Delete this notice" +msgstr "Borrar esta nota" + +#: actions/deleteuser.php:67 +msgid "You cannot delete users." +msgstr "Non pode borrar usuarios." + +#: actions/deleteuser.php:74 +msgid "You can only delete local users." +msgstr "Só pode borrar usuarios locais." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" +msgstr "Borrar o usuario" + +#: 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 "" +"Está seguro de querer borrar este usuario? Isto borrará todos os datos do " +"usuario da base de datos, sen posibilidade de recuperalos." + +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +msgid "Delete this user" +msgstr "Borrar o usuario" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/groupnav.php:119 +msgid "Design" +msgstr "Deseño" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "Configuración do deseño deste sitio StatusNet." + +#: actions/designadminpanel.php:275 +msgid "Invalid logo URL." +msgstr "URL do logo incorrecto." + +#: actions/designadminpanel.php:279 +#, php-format +msgid "Theme not available: %s" +msgstr "O tema visual non está dispoñible: %s" + +#: actions/designadminpanel.php:375 +msgid "Change logo" +msgstr "Cambiar o logo" + +#: actions/designadminpanel.php:380 +msgid "Site logo" +msgstr "Logo do sitio" + +#: actions/designadminpanel.php:387 +msgid "Change theme" +msgstr "Cambar o tema visual" + +#: actions/designadminpanel.php:404 +msgid "Site theme" +msgstr "Tema visual do sitio" + +#: actions/designadminpanel.php:405 +msgid "Theme for the site." +msgstr "Tema visual para o sitio." + +#: actions/designadminpanel.php:417 lib/designsettings.php:101 +msgid "Change background image" +msgstr "Cambiar a imaxe de fondo" + +#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "Fondo" + +#: actions/designadminpanel.php:427 +#, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" +"Pode cargar unha imaxe de fondo para o sitio. O tamaño máximo para o " +"ficheiro é de %1$s." + +#: actions/designadminpanel.php:457 lib/designsettings.php:139 +msgid "On" +msgstr "Activado" + +#: actions/designadminpanel.php:473 lib/designsettings.php:155 +msgid "Off" +msgstr "Desactivado" + +#: actions/designadminpanel.php:474 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "Activar ou desactivar a imaxe de fondo." + +#: actions/designadminpanel.php:479 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "Imaxe de fondo en mosaico" + +#: actions/designadminpanel.php:488 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Cambiar as cores" + +#: actions/designadminpanel.php:510 lib/designsettings.php:191 +msgid "Content" +msgstr "Contido" + +#: actions/designadminpanel.php:523 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Barra lateral" + +#: actions/designadminpanel.php:536 lib/designsettings.php:217 +msgid "Text" +msgstr "Texto" + +#: actions/designadminpanel.php:549 lib/designsettings.php:230 +msgid "Links" +msgstr "Ligazóns" + +#: actions/designadminpanel.php:577 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "Utilizar os valores por defecto" + +#: actions/designadminpanel.php:578 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "Restaurar o deseño por defecto" + +#: actions/designadminpanel.php:584 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "Volver ao deseño por defecto" + +#: 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:226 +#: 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 "Gardar" + +#: actions/designadminpanel.php:587 lib/designsettings.php:257 +msgid "Save design" +msgstr "Gardar o deseño" + +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Esta nota non é unha das favoritas!" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Engadir aos favoritos" + +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Non hai ningún documento \"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Editar a aplicación" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Ten que iniciar sesión para editar unha aplicación." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Non existe esa aplicación." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Utilice este formulario para editar a súa aplicación." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Fai falla un nome." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "O nome é longo de máis (o límite é de 255 caracteres)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "O nome xa está en uso. Probe con outro." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Fai falla unha descrición." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "O URL de orixe é longo de máis." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "O URL de orixe é incorrecto." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Fai falla unha organización." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "A organización é longa de máis (o límite é de 255 caracteres)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Fai falla unha páxina web da organización." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "O retorno de chamada é longo de máis." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "O URL do retorno de chamada é incorrecto." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Non se puido actualizar a aplicación." + +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Editar o grupo %s" + +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Ten que iniciar sesión para crear un grupo." + +#: 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 "Ten que ser administrador para editar o grupo." + +#: actions/editgroup.php:158 +msgid "Use this form to edit the group." +msgstr "Utilice este formulario para editar o grupo." + +#: actions/editgroup.php:205 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." +msgstr "a descrición é longa de máis (o límite é de %d caracteres)." + +#: actions/editgroup.php:258 +msgid "Could not update group." +msgstr "Non se puido actualizar o grupo." + +#: actions/editgroup.php:264 classes/User_group.php:496 +msgid "Could not create aliases." +msgstr "Non se puideron crear os pseudónimos." + +#: actions/editgroup.php:280 +msgid "Options saved." +msgstr "Gardáronse as preferencias." + +#: actions/emailsettings.php:60 +msgid "Email settings" +msgstr "Configuración do correo electrónico" + +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Xestiona a forma en que recibes correo electrónico de %%site.name%%." + +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Enderezo" + +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Enderezo de correo electrónico confirmado actualmente." + +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Borrar" + +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Agardando pola confirmación deste enderezo. Busque unha mensaxe con máis " +"instrucións na súa bandexa de entrada (e na de correo non desexado!)." + +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 +msgid "Cancel" +msgstr "Cancelar" + +#: actions/emailsettings.php:121 +msgid "Email address" +msgstr "Enderezo de correo electrónico" + +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Enderezo de correo electrónico, coma \"nomedeusuario@example.org\"" + +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Engadir" + +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Correo entrante" + +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" +"Enviar un correo electrónico a este enderezo para publicar novas notas." + +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" +"Establece un novo enderezo de correo electrónico no que publicar, e cancela " +"o vello." + +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Novo" + +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Preferencias" + +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "Enviarme notas acerca de novas subscricións por correo electrónico." + +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" +"Enviádeme un correo electrónico cando alguén marque como favorito algunha " +"das miñas notas." + +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" +"Enviádeme un correo electrónico cando alguén me envíe unha mensaxe privada." + +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Enviádeme un correo electrónico cando alguén me envíe unha resposta." + +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" +"Permitirlles aos meus amigos facerme acenos e enviarme correos electrónicos." + +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "Quero publicar notas por correo electrónico." + +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Publicar unha MicroID para o meu enderezo de correo electrónico." + +#: actions/emailsettings.php:302 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Gardáronse as preferencias." + +#: actions/emailsettings.php:320 +msgid "No email address." +msgstr "Non hai enderezo de correo electrónico." + +#: actions/emailsettings.php:327 +msgid "Cannot normalize that email address" +msgstr "Non se pode normalizar ese enderezo de correo electrónico" + +#: actions/emailsettings.php:331 actions/register.php:201 +#: actions/siteadminpanel.php:144 +msgid "Not a valid email address." +msgstr "O enderezo de correo electrónico é incorrecto." + +#: actions/emailsettings.php:334 +msgid "That is already your email address." +msgstr "Ese enderezo de correo electrónico é o que ten agora." + +#: actions/emailsettings.php:337 +msgid "That email address already belongs to another user." +msgstr "Ese enderezo de correo electrónico xa pertence a outro usuario." + +#: actions/emailsettings.php:353 actions/imsettings.php:319 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "Non se puido inserir o código de confirmación." + +#: 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 "" +"Enviouse un código de confirmación ao enderezo de correo electrónico que " +"engadiu. Busque o código e as instrucións para usalo na súa bandexa de " +"entrada (e na de correo non desexado!)." + +#: actions/emailsettings.php:379 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "Non hai ningunha confirmación pendente que cancelar." + +#: actions/emailsettings.php:383 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "Ese enderezo de mensaxería instantánea é incorrecto." + +#: actions/emailsettings.php:395 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Cancelouse a confirmación." + +#: actions/emailsettings.php:413 +msgid "That is not your email address." +msgstr "Ese non é o seu enderezo de correo electrónico." + +#: actions/emailsettings.php:432 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Borrouse o enderezo." + +#: actions/emailsettings.php:446 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "Non hai ningún enderezo ao que enviar." + +#: actions/emailsettings.php:456 actions/emailsettings.php:478 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "Non se puido actualizar o rexistro do usuario." + +#: actions/emailsettings.php:459 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "Borrouse o enderezo de correo electrónico entrante." + +#: actions/emailsettings.php:481 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "Engadiuse un novo enderezo de correo electrónico entrante." + +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "A nota xa é unha das súas favoritas!" + +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Desmarcar como favorita" + +#: actions/favorited.php:65 lib/popularnoticesection.php:91 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Notas populares" + +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Notas populares, páxina %d" + +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "As notas máis populares do sitio nestes intres." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "As notas favoritas aparecen nesta páxina, pero aínda non hai ningunha." + +#: 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 "" +"Sexa o primeiro en engadir unha nota aos seus favoritos premendo sobre o " +"botón de favoritos que aparece ao carón de calquera nota que lle guste." + +#: 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 "" +"Por que non [rexistrar unha conta](%%action.register%%) e ser o primeiro en " +"engadir unha nota aos seus favoritos?!" + +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Notas favoritas de %s" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Actualizacións favoritas de %1$s en %2$s!" + +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Usuarios do momento" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Usuarios do momento, páxina %d" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some great users on %s" +msgstr "Unha selección dalgúns bos usuarios en %s" + +#: actions/file.php:34 +msgid "No notice ID." +msgstr "A nota non ten ningunha ID." + +#: actions/file.php:38 +msgid "No notice." +msgstr "Non hai ningunha nota." + +#: actions/file.php:42 +msgid "No attachments." +msgstr "Non hai ningún dato adxunto." + +#: actions/file.php:51 +msgid "No uploaded attachments." +msgstr "Non se cargou ningún dato adxunto." + +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Non se esperaba esta resposta!" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "Non existe o usuario ao que está seguindo." + +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Pode usar a subscrición local!" + +#: actions/finishremotesubscribe.php:99 +msgid "That user has blocked you from subscribing." +msgstr "Ese usuario bloqueouno fronte á subscrición a el." + +#: actions/finishremotesubscribe.php:110 +msgid "You are not authorized." +msgstr "Non está autorizado." + +#: actions/finishremotesubscribe.php:113 +msgid "Could not convert request token to access token." +msgstr "Non se puido converter a ficha da solicitude nun pase." + +#: actions/finishremotesubscribe.php:118 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB." + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Houbo un erro ao actualizar o perfil remoto" + +#: actions/getfile.php:79 +msgid "No such file." +msgstr "Non existe tal ficheiro." + +#: actions/getfile.php:83 +msgid "Cannot read file." +msgstr "Non se pode ler o ficheiro." + +#: actions/grantrole.php:62 actions/revokerole.php:62 +msgid "Invalid role." +msgstr "Rol incorrecto." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "Non se pode establecer este rol, está reservado." + +#: actions/grantrole.php:75 +msgid "You cannot grant user roles on this site." +msgstr "Non pode concederlles roles aos usuarios neste sitio." + +#: actions/grantrole.php:82 +msgid "User already has this role." +msgstr "O usuario xa ten este rol." + +#: 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 "Non se especificou ningún perfil." + +#: 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 "Ningún perfil ten esa ID." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "Non se especificou ningún grupo." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "Só os administradores poden excluír a membros do grupo." + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "O usuario xa está excluído do grupo." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "O usuario non pertence ao grupo." + +#: actions/groupblock.php:136 actions/groupmembers.php:341 +msgid "Block user from group" +msgstr "Excluír do grupo ao usuario" + +#: 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 "" +"Seguro que quere excluír do grupo \"%2$s\" ao usuario \"%1$s\"? Quedará fóra " +"do grupo, sen a posibilidade de publicar nada nel nin volver subscribirse a " +"el no futuro." + +#: actions/groupblock.php:178 +msgid "Do not block this user from this group" +msgstr "Non excluír deste grupo a este usuario" + +#: actions/groupblock.php:179 +msgid "Block this user from this group" +msgstr "Excluír deste grupo a este usuario" + +#: actions/groupblock.php:196 +msgid "Database error blocking user from group." +msgstr "Houbo un erro na base de datos ao excluír do grupo ao usuario." + +#: actions/groupbyid.php:74 actions/userbyid.php:70 +msgid "No ID." +msgstr "Sen ID." + +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "Ten que estar identificado para editar un grupo." + +#: actions/groupdesignsettings.php:144 +msgid "Group design" +msgstr "Deseño do grupo" + +#: actions/groupdesignsettings.php:155 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" +"Personaliza o aspecto do grupo cunha imaxe de fondo e unha paleta de cores " +"da súa escolla." + +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +msgid "Couldn't update your design." +msgstr "Non se puido actualizar o seu deseño." + +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +msgid "Design preferences saved." +msgstr "Gardáronse as preferencias de deseño." + +#: actions/grouplogo.php:142 actions/grouplogo.php:195 +msgid "Group logo" +msgstr "Logo do grupo" + +#: actions/grouplogo.php:153 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" +"Pode cargar un logo para o seu grupo. O tamaño máximo para o ficheiro é de %" +"s." + +#: actions/grouplogo.php:181 +msgid "User without matching profile." +msgstr "O usuario non ten perfil." + +#: actions/grouplogo.php:365 +msgid "Pick a square area of the image to be the logo." +msgstr "Escolla unha zona cadrada da imaxe para usala como logo." + +#: actions/grouplogo.php:399 +msgid "Logo updated." +msgstr "Actualizouse o logo." + +#: actions/grouplogo.php:401 +msgid "Failed updating logo." +msgstr "Non se puido actualizar o logo." + +#: actions/groupmembers.php:100 lib/groupnav.php:92 +#, php-format +msgid "%s group members" +msgstr "Membros do grupo %s" + +#: actions/groupmembers.php:103 +#, php-format +msgid "%1$s group members, page %2$d" +msgstr "Membros do grupo %1$s, páxina %2$d" + +#: actions/groupmembers.php:118 +msgid "A list of the users in this group." +msgstr "Unha lista dos usuarios pertencentes a este grupo." + +#: actions/groupmembers.php:182 lib/groupnav.php:107 +msgid "Admin" +msgstr "Administrador" + +#: actions/groupmembers.php:373 lib/blockform.php:69 +msgid "Block" +msgstr "Excluír" + +#: actions/groupmembers.php:468 +msgid "Make user an admin of the group" +msgstr "Converter ao usuario en administrador do grupo" + +#: actions/groupmembers.php:500 +msgid "Make Admin" +msgstr "Converter en administrador" + +#: actions/groupmembers.php:500 +msgid "Make this user an admin" +msgstr "Converter a este usuario en administrador" + +#: actions/grouprss.php:138 actions/userrss.php:93 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Liña do tempo de %s" + +#: actions/grouprss.php:140 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Actualizacións de membros de %1$s en %2$s!" + +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 +#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Grupos" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Grupos, páxina %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 "" +"Os grupos de %%%%site.name%%%% permiten atopar e pórse en contacto con " +"persoas de intereses similares aos seus. Tras unirse a un grupo pode enviar " +"mensaxes a todos os membros utilizando a sintaxe \"!nomedogrupo\". Non atopa " +"un grupo que lle guste? Probe a [buscar un](%%%%action.groupsearch%%%%) ou " +"[crear un pola súa conta!](%%%%action.newgroup%%%%)" + +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Crear un grupo novo" + +#: 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 "" +"Buscar grupos en %%site.name%% por nome, lugar ou descrición. Separe os " +"termos con espazos en branco. Cada termo ten que estar formado por tres ou " +"máis caracteres." + +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Busca de grupos" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "Non houbo resultados." + +#: 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 "Se non atopa o grupo que busca, pode [crealo](%%action.newgroup%%)." + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" +"Por que non [rexistrar unha conta](%%action.register%%) e [crear o grupo](%%" +"action.newgroup%%)?" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "Só os administradores poden readmitir a membros do grupo." + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "O usuario non está excluído do grupo." + +#: actions/groupunblock.php:128 actions/unblock.php:86 +msgid "Error removing the block." +msgstr "Houbo un erro ao facer efectiva a readmisión." + +#: actions/imsettings.php:59 +msgid "IM settings" +msgstr "Configuración da mensaxería instantánea" + +#: 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 "" +"Pode enviar e recibir notas mediante [mensaxes instantáneas](%%doc.im%%) de " +"Jabber/GTalk. Configure a continuación o seu enderezo e preferencias." + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "A mensaxería instantánea non está dispoñible." + +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Enderezo de Jabber/GTalk confirmado actualmente." + +#: 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 "" +"Agardando pola confirmación deste enderezo. Busque na cúa conta de Jabber/" +"GTalk unha mensaxe con máis instrucións. (Engadiu %s á súa lista de amigos?)" + +#: actions/imsettings.php:124 +msgid "IM address" +msgstr "Enderezo de mensaxería instantánea" + +#: 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 "" +"Enderezo de Jabber ou GTalk, coma «nomedousuario@example.org». Asegúrese " +"primeiro de engadir a %s á súa lista de amigos no seu cliente de mensaxería " +"instantánea ou en GTalk." + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Enviarme as notas mediante Jabber ou GTalk." + +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Publicar unha nota cando cambie o meu estado en Jabber ou GTalk." + +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Enviarme as respostas mediante Jabber ou GTalk da xente á que non estou " +"subscrita." + +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Publicar unha MicroID para o meu enderezo de Jabber ou GTalk." + +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "Non hai unha ID de Jabber." + +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Non se pode normalizar esa ID de Jabber" + +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "A ID de Jabber non é correcta" + +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Esa xa é a súa ID de Jabber." + +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Esa ID de Jabber xa corresponde a un usuario." + +#: 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 "" +"Enviouse un código de confirmación ao enderezo de mensaxería instantánea que " +"engadiu. Ten que aprobar que %s lle envíe mensaxes." + +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "Esa ID de Jabber non é súa." + +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Caixa de entrada de %1$s - páxina %2$d" + +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Caixa de entrada de %s" + +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" +"Esta é a súa caixa de correo, onde se listan as mensaxes privadas recibidas." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "As invitacións están desactivadas." + +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "Ten que identificarse para invitar a outros a usar %s" + +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Enderezo de correo electrónico incorrecto: %s" + +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Enviáronse as invitacións" + +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Invitar a novos usuarios" + +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Xa está subscrito aos seguintes usuarios:" + +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#, 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 "Estas persoas xa son usuarios e suscribíuselle automaticamente a elas:" + +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Enviáronse invitacións ás seguintes persoas:" + +#: 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 "" +"Notificaráselle cando os seus convidados acepten a invitación e se rexistren " +"no sitio. Grazas por ampliar a comunidade!" + +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Utilice o seguinte formulario para invitar aos seus amigos e compañeiros a " +"utilizar este servizo." + +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Enderezos de correo electrónico" + +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Enderezos de amigos aos que invitar (un por liña)" + +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Mensaxe persoal" + +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Engadir opcionalmente unha mensaxe persoal á invitación." + +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + +#: actions/invite.php:227 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s convidouno a unirse a el en %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 "" +"%1$s convidouno a unirse a el en %2$s (%3$s).\n" +"\n" +"%2$s é un servizo de “micro-blogging” que lle permite estar ao día coas " +"persoas que coñece e coas que lle interesen.\n" +"\n" +"Tamén pode compartir novas persoais, pensamentos, ou a súa vida en liña con " +"outros coñecidos. Tamén está moi ben para coñecer a xente con intereses " +"similares aos seus.\n" +"\n" +"%1$s dixo:\n" +"\n" +"%4$s\n" +"\n" +"Pode ver a páxina do perfil de %1$s en %2$s aquí:\n" +"\n" +"%5$s\n" +"\n" +"Se quere probar o servizo, prema na seguinte ligazón para aceptar a " +"invitación.\n" +"\n" +"%6$s\n" +"\n" +"Se non pode ignorar esta mensaxe. Grazas polo seu tempo.\n" +"\n" +"Cordialmente, %2$s\n" + +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Ten que identificarse para unirse a un grupo." + +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Nin alcume nin ID." + +#: actions/joingroup.php:141 +#, php-format +msgid "%1$s joined group %2$s" +msgstr "%1$s uniuse ao grupo %2$s" + +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Ten que identificarse para deixar un grupo." + +#: actions/leavegroup.php:100 lib/command.php:363 +msgid "You are not a member of that group." +msgstr "Non pertence a ese grupo." + +#: actions/leavegroup.php:137 +#, php-format +msgid "%1$s left group %2$s" +msgstr "%1$s deixou o grupo %2$s" + +#: actions/login.php:80 actions/otp.php:62 actions/register.php:137 +msgid "Already logged in." +msgstr "Xa se identificou." + +#: actions/login.php:126 +msgid "Incorrect username or password." +msgstr "Nome de usuario ou contrasinal incorrectos." + +#: actions/login.php:132 actions/otp.php:120 +msgid "Error setting user. You are probably not authorized." +msgstr "" +"Houbo un erro ao configurar o usuario. Probablemente non estea autorizado " +"para facelo." + +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 +msgid "Login" +msgstr "Identificarse" + +#: actions/login.php:227 +msgid "Login to site" +msgstr "Identificarse no sitio" + +#: actions/login.php:236 actions/register.php:478 +msgid "Remember me" +msgstr "Lembrarme" + +#: actions/login.php:237 actions/register.php:480 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Identificarse automaticamente no futuro. Non se aconsella en computadoras " +"compartidas!" + +#: actions/login.php:247 +msgid "Lost or forgotten password?" +msgstr "Esqueceu ou perdeu o contrasinal?" + +#: actions/login.php:266 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Por razóns de seguridade, volva introducir o seu nome de usuario e " +"contrasinal antes de cambiar a súa configuración." + +#: 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 "" +"Identifíquese co seu nome de usuario e contrasinal. Aínda non ten un nome de " +"usuario? [Rexistre](%%action.register%%) unha conta nova." + +#: actions/makeadmin.php:92 +msgid "Only an admin can make another user an admin." +msgstr "" +"Só os administradores poden converter a outros usuarios en administradores." + +#: actions/makeadmin.php:96 +#, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "%1$s xa é administrador do grupo «%2$s»." + +#: actions/makeadmin.php:133 +#, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "Non se pudi obter o rexistro de pertenza de %1$s ao grupo %2$s." + +#: actions/makeadmin.php:146 +#, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "Non se pode converter a %1$s en administrador do grupo %2$s." + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Sen estado actual" + +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Aplicación nova" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Ten que identificarse para rexistrar unha aplicación." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Utilice o seguinte formulario para rexistrar unha aplicación nova." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Precísase do URL fonte." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Non se puido crear a aplicación." + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Novo grupo" + +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Utilice o seguinte formulario para crear un novo grupo." + +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Mensaxe nova" + +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +msgid "You can't send a message to this user." +msgstr "Non pode enviarlle unha mensaxe a este usuario." + +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 +#: lib/command.php:529 +msgid "No content!" +msgstr "Non hai contido ningún!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Non se especificou ningún destinatario." + +#: actions/newmessage.php:164 lib/command.php:462 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Non se envíe unha mensaxe, limítese a pensar nela." + +#: actions/newmessage.php:181 +msgid "Message sent" +msgstr "Enviouse a mensaxe" + +#: actions/newmessage.php:185 +#, php-format +msgid "Direct message to %s sent." +msgstr "Enviouse a mensaxe directa a %s," + +#: actions/newmessage.php:210 actions/newnotice.php:251 lib/channel.php:189 +msgid "Ajax Error" +msgstr "Houbo un erro de AJAX" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Nova nota" + +#: actions/newnotice.php:217 +msgid "Notice posted" +msgstr "Publicouse a nota" + +#: 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 "" +"Buscar notas en %%site.name%% polo seu contido. Separe os termos de busca " +"con espazos en branco. Teñen que ter tres ou máis caracteres." + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Busca de texto" + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%1$s\" on %2$s" +msgstr "Resultados da busca de «%1$s» en %2$s" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" +"Sexa o primeiro en [publicar sobre este tema](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" + +#: 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 "" +"Que lle parece [rexistrar unha conta](%%%%action.register%%%%) e ser o " +"primeiro en [publicar sobre este tema](%%%%action.newnotice%%%%?" +"status_textarea=%s)?" + +#: actions/noticesearchrss.php:96 +#, php-format +msgid "Updates with \"%s\"" +msgstr "Actualizacións con «%s»" + +#: actions/noticesearchrss.php:98 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Actualizacións que conteñen os termos «%1$s» en %2$s." + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Este usuario non permite acenos ou aínda non corfirmou ou configurou o seu " +"enderezo de correo electrónico." + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Enviouse o aceno" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Enviouse o aceno!" + +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Ten que identificarse para listar as súas aplicacións." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Aplicacións de OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Aplicacións que rexistrou" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "Aínda non rexistrou ningunha aplicación." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Aplicacións conectadas" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "Permitiulle o acceso á súa conta ás seguintes aplicacións." + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "Non é usuario desa aplicación." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Non se puido revogar o acceso da aplicación: " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "Non autorizou o acceso á súa conta para ningunha aplicación." + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" +"os desenvolvedores poden editar a configuración de rexistro das dúas " +"aplicacións " + +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "Non hai perfil para a nota" + +#: actions/oembed.php:86 actions/shownotice.php:175 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Estado de %1$s en %2$s" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "tipo de contido " + +#: actions/oembed.php:160 +msgid "Only " +msgstr "Só " + +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: lib/apiaction.php:1096 lib/apiaction.php:1212 +msgid "Not a supported data format." +msgstr "Non se soporta ese formato de datos." + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Busca de xente" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Busca de notas" + +#: actions/othersettings.php:60 +msgid "Other settings" +msgstr "Outras opcións" + +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Configure outras tantas opcións." + +#: actions/othersettings.php:108 +msgid " (free service)" +msgstr " (servizo gratuíto)" + +#: actions/othersettings.php:116 +msgid "Shorten URLs with" +msgstr "Abreviar os URLs con" + +#: actions/othersettings.php:117 +msgid "Automatic shortening service to use." +msgstr "Servizo de abreviación automática a usar." + +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "Deseños visuais do perfil" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "Amosar ou agochar os deseños do perfil." + +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "" +"O servizo de abreviación de URLs é longo de máis (o límite está en 50 " +"caracteres)." + +#: actions/otp.php:69 +msgid "No user ID specified." +msgstr "Non se especificou unha ID de usuario." + +#: actions/otp.php:83 +msgid "No login token specified." +msgstr "Non se especificou ningún pase." + +#: actions/otp.php:90 +msgid "No login token requested." +msgstr "Non se solicitou ningún pase." + +#: actions/otp.php:95 +msgid "Invalid login token specified." +msgstr "O pase especificado é incorrecto." + +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "O pase caducou." + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Caixa de saída para %1$s - páxina %2$d" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Caixa de saída para %s" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" +"Esta é a súa caixa de saída. Nela lístanse as mensaxes privadas que enviou." + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Cambiar o contrasinal" + +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Cambiar o seu contrasinal." + +#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Cambio de contrasinal" + +#: actions/passwordsettings.php:104 +msgid "Old password" +msgstr "Contrasinal anterior" + +#: actions/passwordsettings.php:108 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Novo contrasinal" + +#: actions/passwordsettings.php:109 +msgid "6 or more characters" +msgstr "Seis ou máis caracteres" + +#: actions/passwordsettings.php:112 actions/recoverpassword.php:239 +#: actions/register.php:433 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Confirmar" + +#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Igual ao contrasinal anterior" + +#: actions/passwordsettings.php:117 +msgid "Change" +msgstr "Cambiar" + +#: actions/passwordsettings.php:154 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "O contrasinal debe conter seis ou máis caracteres." + +#: actions/passwordsettings.php:157 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Os contrasinais non coinciden." + +#: actions/passwordsettings.php:165 +msgid "Incorrect old password" +msgstr "O contrasinal anterior non é correcto" + +#: actions/passwordsettings.php:181 +msgid "Error saving user; invalid." +msgstr "Houbo un eror ao gardar o usuario. Incorrecto." + +#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +msgid "Can't save new password." +msgstr "Non se puido gardar o novo contrasinal." + +#: actions/passwordsettings.php:192 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Gardouse o contrasinal." + +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +msgid "Paths" +msgstr "Rutas" + +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site." +msgstr "Configuración do servidor e as rutas para este sitio StatusNet." + +#: actions/pathsadminpanel.php:157 +#, php-format +msgid "Theme directory not readable: %s" +msgstr "Non se pode ler o directorio de temas visuais: %s" + +#: actions/pathsadminpanel.php:163 +#, php-format +msgid "Avatar directory not writable: %s" +msgstr "Non se pode escribir no directorio de avatares: %s" + +#: actions/pathsadminpanel.php:169 +#, php-format +msgid "Background directory not writable: %s" +msgstr "Non se pode escribir no directorio de fondos: %s" + +#: actions/pathsadminpanel.php:177 +#, php-format +msgid "Locales directory not readable: %s" +msgstr "Non se pode ler o directorio de traducións: %s" + +#: actions/pathsadminpanel.php:183 +msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "Servidor SSL incorrecto. O tamaño máximo é de 255 caracteres." + +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +msgid "Site" +msgstr "Sitio" + +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Servidor" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "Nome do servidor do sitio." + +#: actions/pathsadminpanel.php:242 +msgid "Path" +msgstr "Ruta" + +#: actions/pathsadminpanel.php:242 +msgid "Site path" +msgstr "Ruta do sitio" + +#: actions/pathsadminpanel.php:246 +msgid "Path to locales" +msgstr "Ruta das traducións" + +#: actions/pathsadminpanel.php:246 +msgid "Directory path to locales" +msgstr "Ruta do directorio das traducións" + +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "URLs agradables" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "Utilizar URLs agradables (mellores de ler ou lembrar)?" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "Tema visual" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "Servidor de temas visuais" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "Ruta do tema visual" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "Directorio de temas visuais" + +#: actions/pathsadminpanel.php:279 +msgid "Avatars" +msgstr "Avatares" + +#: actions/pathsadminpanel.php:284 +msgid "Avatar server" +msgstr "Servidor de avatares" + +#: actions/pathsadminpanel.php:288 +msgid "Avatar path" +msgstr "Ruta ao avatar" + +#: actions/pathsadminpanel.php:292 +msgid "Avatar directory" +msgstr "Directorio de avatares" + +#: actions/pathsadminpanel.php:301 +msgid "Backgrounds" +msgstr "Fondos" + +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "Servidor de fondos" + +#: actions/pathsadminpanel.php:309 +msgid "Background path" +msgstr "Ruta ao fondo" + +#: actions/pathsadminpanel.php:313 +msgid "Background directory" +msgstr "Directorio de fondos" + +#: actions/pathsadminpanel.php:320 +msgid "SSL" +msgstr "SSL" + +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 +msgid "Never" +msgstr "Nunca" + +#: actions/pathsadminpanel.php:324 +msgid "Sometimes" +msgstr "Ás veces" + +#: actions/pathsadminpanel.php:325 +msgid "Always" +msgstr "Sempre" + +#: actions/pathsadminpanel.php:329 +msgid "Use SSL" +msgstr "Utilizar SSL" + +#: actions/pathsadminpanel.php:330 +msgid "When to use SSL" +msgstr "Cando utilizar SSL" + +#: actions/pathsadminpanel.php:335 +msgid "SSL server" +msgstr "Servidor SSl" + +#: actions/pathsadminpanel.php:336 +msgid "Server to direct SSL requests to" +msgstr "Servidor ao que dirixir as solicitudes SSL" + +#: actions/pathsadminpanel.php:352 +msgid "Save paths" +msgstr "Gardar as rutas" + +#: 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 "" +"Buscar xente en %%site.name%% por nome, lugar ou intereses. Separe os termos " +"con espazos en branco. Teñen que ter tres ou máis caracteres." + +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Busca de xente" + +#: actions/peopletag.php:68 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "A etiqueta de persoa non é correcta: %s" + +#: actions/peopletag.php:142 +#, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "Usuarios autoetiquetados con %1$s - páxina %2$d" + +#: actions/postnotice.php:95 +msgid "Invalid notice content" +msgstr "O contido da nota é incorrecto" + +#: actions/postnotice.php:101 +#, php-format +msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgstr "A licenza “%1$s” da nota non é compatible coa licenza “%2$s” do sitio." + +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Configuración do perfil" + +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Pode actualizar a información do seu perfil persoal para que a xente o " +"coñeza mellor." + +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Información do perfil" + +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " +"espazos, tiles ou eñes" + +#: actions/profilesettings.php:111 actions/register.php:448 +#: actions/showgroup.php:256 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:150 +msgid "Full name" +msgstr "Nome completo" + +#: actions/profilesettings.php:115 actions/register.php:453 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Páxina persoal" + +#: actions/profilesettings.php:117 actions/register.php:455 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio" + +#: actions/profilesettings.php:122 actions/register.php:461 +#, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descríbase a vostede e mailos seus intereses en %d caracteres" + +#: actions/profilesettings.php:125 actions/register.php:464 +msgid "Describe yourself and your interests" +msgstr "Descríbase a vostede e mailos seus intereses" + +#: actions/profilesettings.php:127 actions/register.php:466 +msgid "Bio" +msgstr "Biografía" + +#: actions/profilesettings.php:132 actions/register.php:471 +#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 +#: lib/userprofile.php:165 +msgid "Location" +msgstr "Lugar" + +#: actions/profilesettings.php:134 actions/register.php:473 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" + +#: actions/profilesettings.php:138 +msgid "Share my current location when posting notices" +msgstr "Compartir o lugar onde vivo ao publicar notas" + +#: actions/profilesettings.php:145 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:210 +msgid "Tags" +msgstr "Etiquetas" + +#: actions/profilesettings.php:147 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Etiquetas para vostede (letras salvo eñes e tiles, números, puntos, guións e " +"guións baixos), separados por comas ou espazos" + +#: actions/profilesettings.php:151 +msgid "Language" +msgstr "Lingua" + +#: actions/profilesettings.php:152 +msgid "Preferred language" +msgstr "Lingua escollida" + +#: actions/profilesettings.php:161 +msgid "Timezone" +msgstr "Fuso horario" + +#: actions/profilesettings.php:162 +msgid "What timezone are you normally in?" +msgstr "En que fuso horario adoita estar?" + +#: actions/profilesettings.php:167 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Subscribirse automaticamente a quen se subscriba a min (o mellor para os " +"bots)" + +#: actions/profilesettings.php:228 actions/register.php:223 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "A biografía é longa de máis (o límite son %d caracteres)." + +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 +msgid "Timezone not selected." +msgstr "Non se escolleu un fuso horario." + +#: actions/profilesettings.php:241 +msgid "Language is too long (max 50 chars)." +msgstr "A lingua é longa de máis (o límite é de 50 caracteres)." + +#: actions/profilesettings.php:253 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etiqueta incorrecta: «%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 "" + +#: actions/profilesettings.php:383 +msgid "Couldn't save tags." +msgstr "" + +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +msgid "Settings saved." +msgstr "" + +#: 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 "" + +#: 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 "" + +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "" + +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "" + +#: 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 "" + +#: 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 "" + +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "" + +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "" + +#: actions/recoverpassword.php:210 actions/recoverpassword.php:335 +msgid "Password recovery requested" +msgstr "" + +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "" + +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "" + +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "" + +#: actions/recoverpassword.php:282 +msgid "No user with that email address or username." +msgstr "" + +#: actions/recoverpassword.php:299 +msgid "No registered email address for that user." +msgstr "" + +#: actions/recoverpassword.php:313 +msgid "Error saving address confirmation." +msgstr "" + +#: actions/recoverpassword.php:338 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" + +#: actions/recoverpassword.php:357 +msgid "Unexpected password reset." +msgstr "" + +#: actions/recoverpassword.php:365 +msgid "Password must be 6 chars or more." +msgstr "" + +#: actions/recoverpassword.php:369 +msgid "Password and confirmation do not match." +msgstr "" + +#: actions/recoverpassword.php:388 actions/register.php:248 +msgid "Error setting user." +msgstr "" + +#: actions/recoverpassword.php:395 +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 "" + +#: actions/register.php:112 +msgid "Registration successful" +msgstr "" + +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +msgid "Register" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: actions/register.php:434 +msgid "Same as password above. Required." +msgstr "" + +#: actions/register.php:438 actions/register.php:442 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +msgid "Email" +msgstr "" + +#: 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:406 +msgid "Subscribe" +msgstr "" + +#: 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 "" + +#: actions/repeat.php:76 +msgid "You can't repeat your own notice." +msgstr "" + +#: actions/repeat.php:90 +msgid "You already repeated that notice." +msgstr "" + +#: actions/repeat.php:114 lib/noticelist.php:678 +msgid "Repeated" +msgstr "" + +#: actions/repeat.php:119 +msgid "Repeated!" +msgstr "" + +#: actions/replies.php:126 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "" + +#: actions/replies.php:128 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "" + +#: 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 +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 "" + +#: 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 "" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "" + +#: 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 "" + +#: 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:444 +#: lib/profileaction.php:187 +msgid "Statistics" +msgstr "" + +#: 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 "" + +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "" + +#: actions/showgroup.php:227 +msgid "Group profile" +msgstr "" + +#: actions/showgroup.php:272 actions/tagother.php:118 +#: actions/userauthorization.php:175 lib/userprofile.php:178 +msgid "URL" +msgstr "" + +#: actions/showgroup.php:283 actions/tagother.php:128 +#: actions/userauthorization.php:187 lib/userprofile.php:195 +msgid "Note" +msgstr "" + +#: actions/showgroup.php:293 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:302 +msgid "Group actions" +msgstr "" + +#: actions/showgroup.php:338 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:344 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:350 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:355 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91 +msgid "Members" +msgstr "" + +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 +#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:404 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:447 +msgid "Created" +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. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showgroup.php:469 +#, 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:497 +msgid "Admins" +msgstr "" + +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: 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 "" + +#: 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 +msgid "Basic settings for this StatusNet site" +msgstr "" + +#: 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 0 (unlimited)." +msgstr "" + +#: actions/siteadminpanel.php:171 +msgid "Dupe limit must 1 or more seconds." +msgstr "" + +#: actions/siteadminpanel.php:221 +msgid "General" +msgstr "" + +#: actions/siteadminpanel.php:224 +msgid "Site name" +msgstr "" + +#: actions/siteadminpanel.php:225 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:229 +msgid "Brought by" +msgstr "" + +#: 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 "" + +#: 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 +msgid "Default language" +msgstr "" + +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" + +#: actions/siteadminpanel.php:271 +msgid "Limits" +msgstr "" + +#: 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 +msgid "Site Notice" +msgstr "" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +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 +msgid "Site notice text" +msgstr "" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +msgid "Save site notice" +msgstr "" + +#: actions/smssettings.php:58 +msgid "SMS settings" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + +#: actions/smssettings.php:138 +msgid "SMS phone number" +msgstr "" + +#: 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 "" + +#: 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 "" + +#. 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 "" + +#: actions/subedit.php:83 classes/Subscription.php:132 +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:208 +msgid "Jabber" +msgstr "" + +#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: 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:76 +msgid "User profile" +msgstr "" + +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:103 +msgid "Photo" +msgstr "" + +#: 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 "" + +#: actions/useradminpanel.php:222 +msgid "Bio Limit" +msgstr "" + +#: actions/useradminpanel.php:223 +msgid "Maximum length of a profile bio in characters." +msgstr "" + +#: actions/useradminpanel.php:231 +msgid "New users" +msgstr "" + +#: actions/useradminpanel.php:235 +msgid "New user welcome" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: actions/userauthorization.php:217 +msgid "Accept" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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:95 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" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: actions/version.php:196 lib/action.php:766 +msgid "Version" +msgstr "" + +#: actions/version.php:197 +msgid "Author(s)" +msgstr "" + +#: classes/File.php:169 +#, 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:179 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:186 +#, 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 "" + +#: classes/Group_member.php:53 +msgid "Not part of group." +msgstr "" + +#: classes/Group_member.php:60 +msgid "Group leave failed." +msgstr "" + +#: 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 "" + +#: classes/Message.php:71 +msgid "Could not update message with new URI." +msgstr "" + +#: classes/Notice.php:175 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + +#: classes/Notice.php:244 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/Notice.php:248 +msgid "Problem saving notice. Unknown user." +msgstr "" + +#: classes/Notice.php:253 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:259 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: classes/Notice.php:265 +msgid "You are banned from posting notices on this site." +msgstr "" + +#: classes/Notice.php:331 classes/Notice.php:357 +msgid "Problem saving notice." +msgstr "" + +#: classes/Notice.php:943 +msgid "Problem saving group inbox." +msgstr "" + +#: classes/Notice.php:1481 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "" + +#: classes/Subscription.php:74 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:78 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:82 +msgid "User has blocked you." +msgstr "" + +#: classes/Subscription.php:167 +msgid "Not subscribed!" +msgstr "" + +#: classes/Subscription.php:173 +msgid "Couldn't delete self-subscription." +msgstr "" + +#: classes/Subscription.php:200 +msgid "Couldn't delete subscription OMB token." +msgstr "" + +#: classes/Subscription.php:211 +msgid "Couldn't delete subscription." +msgstr "" + +#: classes/User.php:363 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: classes/User_group.php:480 +msgid "Could not create group." +msgstr "" + +#: classes/User_group.php:489 +msgid "Could not set group URI." +msgstr "" + +#: classes/User_group.php:510 +msgid "Could not set group membership." +msgstr "" + +#: classes/User_group.php:524 +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 "" + +#: 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 "" + +#: lib/accountsettingsaction.php:128 +msgid "Other options" +msgstr "" + +#: lib/action.php:144 +#, php-format +msgid "%1$s - %2$s" +msgstr "" + +#: lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:423 +msgid "Primary site navigation" +msgstr "" + +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:429 +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:432 +msgctxt "MENU" +msgid "Personal" +msgstr "" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:434 +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:439 +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "" + +#: lib/action.php:442 +msgid "Connect" +msgstr "" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:445 +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "" + +#: lib/action.php:448 +msgctxt "MENU" +msgid "Admin" +msgstr "" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:452 +#, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + +#: lib/action.php:455 +msgctxt "MENU" +msgid "Invite" +msgstr "" + +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:461 +msgctxt "TOOLTIP" +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:464 +msgctxt "MENU" +msgid "Logout" +msgstr "" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:469 +msgctxt "TOOLTIP" +msgid "Create an account" +msgstr "" + +#: lib/action.php:472 +msgctxt "MENU" +msgid "Register" +msgstr "" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:475 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "" + +#: lib/action.php:478 +msgctxt "MENU" +msgid "Login" +msgstr "" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:481 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "" + +#: lib/action.php:484 +msgctxt "MENU" +msgid "Help" +msgstr "" + +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:487 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "" + +#: lib/action.php:490 +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:512 lib/adminpanelaction.php:398 +msgid "Site notice" +msgstr "" + +#: lib/action.php:578 +msgid "Local views" +msgstr "" + +#: lib/action.php:644 +msgid "Page notice" +msgstr "" + +#: lib/action.php:746 +msgid "Secondary site navigation" +msgstr "" + +#: lib/action.php:751 +msgid "Help" +msgstr "" + +#: lib/action.php:753 +msgid "About" +msgstr "" + +#: lib/action.php:755 +msgid "FAQ" +msgstr "" + +#: lib/action.php:759 +msgid "TOS" +msgstr "" + +#: lib/action.php:762 +msgid "Privacy" +msgstr "" + +#: lib/action.php:764 +msgid "Source" +msgstr "" + +#: lib/action.php:768 +msgid "Contact" +msgstr "" + +#: lib/action.php:770 +msgid "Badge" +msgstr "" + +#: lib/action.php:798 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:803 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" + +#: lib/action.php:805 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "" + +#: lib/action.php:808 +#, 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:823 +msgid "Site content license" +msgstr "" + +#: lib/action.php:828 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:833 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:836 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:849 +msgid "All " +msgstr "" + +#: lib/action.php:855 +msgid "license." +msgstr "" + +#: lib/action.php:1154 +msgid "Pagination" +msgstr "" + +#: lib/action.php:1163 +msgid "After" +msgstr "" + +#: lib/action.php:1171 +msgid "Before" +msgstr "" + +#: lib/activity.php:120 +msgid "Expecting a root feed element but got a whole XML document." +msgstr "" + +#: lib/activityutils.php:208 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activityutils.php:236 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activityutils.php:240 +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 "" + +#. 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 +msgid "Edit site notice" +msgstr "" + +#. 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:276 +#, 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 "" + +#: 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 "" + +#: 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 "" + +#: 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:263 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:276 +msgid "Provider" +msgstr "" + +#: 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:157 lib/channel.php:177 +msgid "Command results" +msgstr "" + +#: lib/channel.php:229 lib/mailhandler.php:142 +msgid "Command complete" +msgstr "" + +#: lib/channel.php:240 +msgid "Command failed" +msgstr "" + +#: lib/command.php:83 lib/command.php:105 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:99 lib/command.php:570 +msgid "User has no last notice" +msgstr "" + +#: lib/command.php:125 +#, php-format +msgid "Could not find a user with nickname %s" +msgstr "" + +#: lib/command.php:143 +#, php-format +msgid "Could not find a local user with nickname %s" +msgstr "" + +#: lib/command.php:176 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: lib/command.php:221 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:228 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:254 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:296 +msgid "Notice marked as fave." +msgstr "" + +#: lib/command.php:317 +msgid "You are already a member of that group" +msgstr "" + +#: lib/command.php:331 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "" + +#: lib/command.php:336 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: lib/command.php:373 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "" + +#: lib/command.php:378 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: lib/command.php:401 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: lib/command.php:404 lib/mail.php:258 +#, php-format +msgid "Location: %s" +msgstr "" + +#: lib/command.php:407 lib/mail.php:260 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: lib/command.php:410 +#, php-format +msgid "About: %s" +msgstr "" + +#: lib/command.php:437 +#, php-format +msgid "" +"%s is a remote profile; you can only send direct messages to users on the " +"same server." +msgstr "" + +#: lib/command.php:450 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:468 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: lib/command.php:470 +msgid "Error sending direct message." +msgstr "" + +#: lib/command.php:490 +msgid "Cannot repeat your own notice" +msgstr "" + +#: lib/command.php:495 +msgid "Already repeated that notice" +msgstr "" + +#: lib/command.php:503 +#, php-format +msgid "Notice from %s repeated" +msgstr "" + +#: lib/command.php:505 +msgid "Error repeating notice." +msgstr "" + +#: lib/command.php:536 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:545 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:547 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:594 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: lib/command.php:602 +msgid "Can't subscribe to OMB profiles by command." +msgstr "" + +#: lib/command.php:608 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: lib/command.php:629 lib/command.php:728 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: lib/command.php:638 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: lib/command.php:656 lib/command.php:679 +msgid "Command not yet implemented." +msgstr "" + +#: lib/command.php:659 +msgid "Notification off." +msgstr "" + +#: lib/command.php:661 +msgid "Can't turn off notification." +msgstr "" + +#: lib/command.php:682 +msgid "Notification on." +msgstr "" + +#: lib/command.php:684 +msgid "Can't turn on notification." +msgstr "" + +#: lib/command.php:697 +msgid "Login command is disabled" +msgstr "" + +#: lib/command.php:708 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" + +#: lib/command.php:735 +#, php-format +msgid "Unsubscribed %s" +msgstr "" + +#: lib/command.php:752 +msgid "You are not subscribed to anyone." +msgstr "" + +#: lib/command.php:754 +#, 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:774 +msgid "No one is subscribed to you." +msgstr "" + +#: lib/command.php:776 +#, 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:796 +msgid "You are not a member of any groups." +msgstr "" + +#: lib/command.php:798 +#, 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:812 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - 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 - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"lose - force user to stop following you\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"repeat # - repeat a notice with a given id\n" +"repeat - repeat the last notice from user\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - 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:135 +msgid "No configuration file found. " +msgstr "" + +#: lib/common.php:136 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:138 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:139 +msgid "Go to the installer." +msgstr "" + +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + +#: 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 "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Etiqueta" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:143 +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 "" + +#: 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 "" + +#: lib/groupnav.php:101 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:102 +#, php-format +msgid "%s blocked users" +msgstr "" + +#: lib/groupnav.php:108 +#, php-format +msgid "Edit %s group properties" +msgstr "" + +#: lib/groupnav.php:113 +msgid "Logo" +msgstr "" + +#: 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:72 +msgid "Unsupported image file format." +msgstr "" + +#: lib/imagefile.php:88 +#, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "" + +#: lib/imagefile.php:93 +msgid "Partial upload." +msgstr "" + +#: lib/imagefile.php:101 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "" + +#: lib/imagefile.php:109 +msgid "Not an image or corrupt file." +msgstr "" + +#: lib/imagefile.php:122 +msgid "Lost our file." +msgstr "" + +#: lib/imagefile.php:163 lib/imagefile.php:224 +msgid "Unknown file type" +msgstr "" + +#: lib/imagefile.php:244 +msgid "MB" +msgstr "" + +#: lib/imagefile.php:246 +msgid "kB" +msgstr "" + +#: lib/jabber.php:387 +#, php-format +msgid "[%s]" +msgstr "" + +#: lib/jabber.php:567 +#, php-format +msgid "Unknown inbox source %d." +msgstr "" + +#: lib/joinform.php:114 +msgid "Join" +msgstr "" + +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "" + +#: 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:173 +msgid "Email address confirmation" +msgstr "" + +#: lib/mail.php:175 +#, 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:240 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "" + +#: lib/mail.php:245 +#, 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:262 +#, php-format +msgid "Bio: %s" +msgstr "" + +#: lib/mail.php:290 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: lib/mail.php:293 +#, 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:417 +#, php-format +msgid "%s status" +msgstr "" + +#: lib/mail.php:443 +msgid "SMS confirmation" +msgstr "" + +#: lib/mail.php:467 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:471 +#, 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:517 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:521 +#, 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:568 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:570 +#, 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:635 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:637 +#, 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:486 +msgid "from" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: lib/noticeform.php:173 +#, php-format +msgid "What's up, %s?" +msgstr "" + +#: lib/noticeform.php:192 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:196 +msgid "Attach a file" +msgstr "" + +#: 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:430 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:431 +msgid "N" +msgstr "" + +#: lib/noticelist.php:431 +msgid "S" +msgstr "" + +#: lib/noticelist.php:432 +msgid "E" +msgstr "" + +#: lib/noticelist.php:432 +msgid "W" +msgstr "" + +#: lib/noticelist.php:439 +msgid "at" +msgstr "" + +#: lib/noticelist.php:570 +msgid "in context" +msgstr "" + +#: lib/noticelist.php:605 +msgid "Repeated by" +msgstr "" + +#: lib/noticelist.php:632 +msgid "Reply to this notice" +msgstr "" + +#: lib/noticelist.php:633 +msgid "Reply" +msgstr "" + +#: lib/noticelist.php:677 +msgid "Notice repeated" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: 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 "" + +#: lib/oauthstore.php:490 +msgid "Couldn't insert new subscription." +msgstr "" + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personalgroupnav.php:125 +msgid "Inbox" +msgstr "" + +#: lib/personalgroupnav.php:126 +msgid "Your incoming messages" +msgstr "" + +#: lib/personalgroupnav.php:130 +msgid "Outbox" +msgstr "" + +#: lib/personalgroupnav.php:131 +msgid "Your sent messages" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/plugin.php:114 +msgid "Unknown" +msgstr "" + +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "" + +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "" + +#: lib/profileaction.php:161 +msgid "All subscribers" +msgstr "" + +#: lib/profileaction.php:191 +msgid "User ID" +msgstr "" + +#: lib/profileaction.php:196 +msgid "Member since" +msgstr "" + +#. TRANS: Average count of posts made per day since account registration +#: lib/profileaction.php:235 +msgid "Daily average" +msgstr "" + +#: lib/profileaction.php:264 +msgid "All groups" +msgstr "" + +#: 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 "" + +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + +#: 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 "" + +#: lib/repeatform.php:107 +msgid "Repeat this notice?" +msgstr "" + +#: lib/repeatform.php:132 +msgid "Repeat this notice" +msgstr "" + +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:704 +msgid "No single user defined for single-user mode." +msgstr "" + +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +msgid "Sandbox this user" +msgstr "" + +#: lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/searchaction.php:126 +msgid "Keyword(s)" +msgstr "" + +#: lib/searchaction.php:127 +msgid "Search" +msgstr "" + +#: lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: lib/silenceform.php:67 +msgid "Silence" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: 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/usernoprofileexception.php:58 +#, php-format +msgid "User %s (%d) has no profile record." +msgstr "" + +#: lib/userprofile.php:117 +msgid "Edit Avatar" +msgstr "" + +#: lib/userprofile.php:234 lib/userprofile.php:248 +msgid "User actions" +msgstr "" + +#: lib/userprofile.php:237 +msgid "User deletion in progress..." +msgstr "" + +#: lib/userprofile.php:263 +msgid "Edit profile settings" +msgstr "" + +#: lib/userprofile.php:264 +msgid "Edit" +msgstr "" + +#: lib/userprofile.php:287 +msgid "Send a direct message to this user" +msgstr "" + +#: lib/userprofile.php:288 +msgid "Message" +msgstr "" + +#: lib/userprofile.php:326 +msgid "Moderate" +msgstr "" + +#: lib/userprofile.php:364 +msgid "User role" +msgstr "" + +#: lib/userprofile.php:366 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:367 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1046 +msgid "a few seconds ago" +msgstr "" + +#: lib/util.php:1048 +msgid "about a minute ago" +msgstr "" + +#: lib/util.php:1050 +#, php-format +msgid "about %d minutes ago" +msgstr "" + +#: lib/util.php:1052 +msgid "about an hour ago" +msgstr "" + +#: lib/util.php:1054 +#, php-format +msgid "about %d hours ago" +msgstr "" + +#: lib/util.php:1056 +msgid "about a day ago" +msgstr "" + +#: lib/util.php:1058 +#, php-format +msgid "about %d days ago" +msgstr "" + +#: lib/util.php:1060 +msgid "about a month ago" +msgstr "" + +#: lib/util.php:1062 +#, php-format +msgid "about %d months ago" +msgstr "" + +#: lib/util.php:1064 +msgid "about a year ago" +msgstr "" + +#: 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:403 +#, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr "" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index b0696d8b8c..53b593d232 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-08 23:07+0000\n" +"POT-Creation-Date: 2010-04-08 23:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From ab20e75ff8feab01b4fec81c02b8b4039d65cca0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 16:58:54 -0700 Subject: [PATCH 11/80] scripts/strip_geo.php to remove geodata from notices by a given user/profile. May be slow or run out of memory if run on particularly prolific posters -- not yet optimized for that case. Note that geodata that has already been sent out to other services (via ostatus, omb, twitter, etc) will not be removed from them. --- lib/util.php | 9 +--- scripts/strip_geo.php | 116 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 117 insertions(+), 8 deletions(-) create mode 100755 scripts/strip_geo.php diff --git a/lib/util.php b/lib/util.php index bbc3341769..f4ee26bbf0 100644 --- a/lib/util.php +++ b/lib/util.php @@ -862,14 +862,7 @@ function common_xml_safe_str($str) function common_tag_link($tag) { $canonical = common_canonical_tag($tag); - if (common_config('singleuser', 'enabled')) { - // regular TagAction isn't set up in 1user mode - $url = common_local_url('showstream', - array('nickname' => common_config('singleuser', 'nickname'), - 'tag' => $canonical)); - } else { - $url = common_local_url('tag', array('tag' => $canonical)); - } + $url = common_local_url('tag', array('tag' => $canonical)); $xs = new XMLStringer(); $xs->elementStart('span', 'tag'); $xs->element('a', array('href' => $url, diff --git a/scripts/strip_geo.php b/scripts/strip_geo.php new file mode 100755 index 0000000000..010fb31f54 --- /dev/null +++ b/scripts/strip_geo.php @@ -0,0 +1,116 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i::n::y'; +$longoptions = array('id=', 'nickname=', 'yes', 'dry-run'); + +$helptext = <<getProfile(); +} else { + print "You must provide either an ID or a nickname.\n\n"; + show_help(); + exit(1); +} + +if (!have_option('y', 'yes') && !have_option('--dry-run')) { + print "About to PERMANENTLY remove geolocation data from user '{$profile->nickname}' ({$profile->id})'s notices. Are you sure? [y/N] "; + $response = fgets(STDIN); + if (strtolower(trim($response)) != 'y') { + print "Aborting.\n"; + exit(0); + } +} + +// @fixme for a very prolific poster this could be too many. +print "Finding notices with geolocation data..."; +$notice = new Notice(); +$notice->profile_id = $profile->id; +$notice->whereAdd("lat != ''"); +$notice->find(); + +if ($notice->N) { + print " $notice->N found.\n"; + while ($notice->fetch()) { + print "notice id $notice->id "; + if (have_option('v') || have_option('--verbose')) { + print "({$notice->lat},{$notice->lon}) "; + if ($notice->location_ns) { + print "ns {$notice->location_ns} id {$notice->location_id} "; + } + } + if (have_option('--dry-run')) { + // sucka + echo "(skipped)"; + } else { + // note: setting fields to null and calling update() doesn't save the nulled fields + $orig = clone($notice); + $update = clone($notice); + + // In theory we could hit a chunk of notices at once in the UPDATE, + // but we're going to have to decache them individually anyway and + // it doesn't hurt to make sure we don't hold up replication with + // what might be a very slow single UPDATE. + $query = sprintf('UPDATE notice ' . + 'SET lat=NULL,lon=NULL,location_ns=NULL,location_id=NULL ' . + 'WHERE id=%d', $notice->id); + $ok = $update->query($query); + if ($ok) { + // And now we decache him manually, as query() doesn't know what we're doing... + $orig->blow(); + echo "(removed)"; + } else { + echo "(failed?)"; + } + } + print "\n"; + } +} else { + print " none found.\n"; +} + +print "DONE.\n"; From 0e0927985cbfbb21c8b60e3c7b0b0a5e2069d3c7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 17:04:10 -0700 Subject: [PATCH 12/80] Revert "scripts/strip_geo.php to remove geodata from notices by a given user/profile." This reverts commit ab20e75ff8feab01b4fec81c02b8b4039d65cca0. Accidentally removed another commit; clearing up... --- lib/util.php | 9 +++- scripts/strip_geo.php | 116 ------------------------------------------ 2 files changed, 8 insertions(+), 117 deletions(-) delete mode 100755 scripts/strip_geo.php diff --git a/lib/util.php b/lib/util.php index f4ee26bbf0..bbc3341769 100644 --- a/lib/util.php +++ b/lib/util.php @@ -862,7 +862,14 @@ function common_xml_safe_str($str) function common_tag_link($tag) { $canonical = common_canonical_tag($tag); - $url = common_local_url('tag', array('tag' => $canonical)); + if (common_config('singleuser', 'enabled')) { + // regular TagAction isn't set up in 1user mode + $url = common_local_url('showstream', + array('nickname' => common_config('singleuser', 'nickname'), + 'tag' => $canonical)); + } else { + $url = common_local_url('tag', array('tag' => $canonical)); + } $xs = new XMLStringer(); $xs->elementStart('span', 'tag'); $xs->element('a', array('href' => $url, diff --git a/scripts/strip_geo.php b/scripts/strip_geo.php deleted file mode 100755 index 010fb31f54..0000000000 --- a/scripts/strip_geo.php +++ /dev/null @@ -1,116 +0,0 @@ -#!/usr/bin/env php -. - */ - -define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); - -$shortoptions = 'i::n::y'; -$longoptions = array('id=', 'nickname=', 'yes', 'dry-run'); - -$helptext = <<getProfile(); -} else { - print "You must provide either an ID or a nickname.\n\n"; - show_help(); - exit(1); -} - -if (!have_option('y', 'yes') && !have_option('--dry-run')) { - print "About to PERMANENTLY remove geolocation data from user '{$profile->nickname}' ({$profile->id})'s notices. Are you sure? [y/N] "; - $response = fgets(STDIN); - if (strtolower(trim($response)) != 'y') { - print "Aborting.\n"; - exit(0); - } -} - -// @fixme for a very prolific poster this could be too many. -print "Finding notices with geolocation data..."; -$notice = new Notice(); -$notice->profile_id = $profile->id; -$notice->whereAdd("lat != ''"); -$notice->find(); - -if ($notice->N) { - print " $notice->N found.\n"; - while ($notice->fetch()) { - print "notice id $notice->id "; - if (have_option('v') || have_option('--verbose')) { - print "({$notice->lat},{$notice->lon}) "; - if ($notice->location_ns) { - print "ns {$notice->location_ns} id {$notice->location_id} "; - } - } - if (have_option('--dry-run')) { - // sucka - echo "(skipped)"; - } else { - // note: setting fields to null and calling update() doesn't save the nulled fields - $orig = clone($notice); - $update = clone($notice); - - // In theory we could hit a chunk of notices at once in the UPDATE, - // but we're going to have to decache them individually anyway and - // it doesn't hurt to make sure we don't hold up replication with - // what might be a very slow single UPDATE. - $query = sprintf('UPDATE notice ' . - 'SET lat=NULL,lon=NULL,location_ns=NULL,location_id=NULL ' . - 'WHERE id=%d', $notice->id); - $ok = $update->query($query); - if ($ok) { - // And now we decache him manually, as query() doesn't know what we're doing... - $orig->blow(); - echo "(removed)"; - } else { - echo "(failed?)"; - } - } - print "\n"; - } -} else { - print " none found.\n"; -} - -print "DONE.\n"; From 4b2dfabff886c7f2e61eef43c7c9de092661d73a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 17:05:02 -0700 Subject: [PATCH 13/80] scripts/strip_geo.php to remove geodata from notices by a given user/profile. May be slow or run out of memory if run on particularly prolific posters -- not yet optimized for that case. Note that geodata that has already been sent out to other services (via ostatus, omb, twitter, etc) will not be removed from them. (fixed version -- previous had accidentally undone another commit) --- scripts/strip_geo.php | 116 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100755 scripts/strip_geo.php diff --git a/scripts/strip_geo.php b/scripts/strip_geo.php new file mode 100755 index 0000000000..010fb31f54 --- /dev/null +++ b/scripts/strip_geo.php @@ -0,0 +1,116 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i::n::y'; +$longoptions = array('id=', 'nickname=', 'yes', 'dry-run'); + +$helptext = <<getProfile(); +} else { + print "You must provide either an ID or a nickname.\n\n"; + show_help(); + exit(1); +} + +if (!have_option('y', 'yes') && !have_option('--dry-run')) { + print "About to PERMANENTLY remove geolocation data from user '{$profile->nickname}' ({$profile->id})'s notices. Are you sure? [y/N] "; + $response = fgets(STDIN); + if (strtolower(trim($response)) != 'y') { + print "Aborting.\n"; + exit(0); + } +} + +// @fixme for a very prolific poster this could be too many. +print "Finding notices with geolocation data..."; +$notice = new Notice(); +$notice->profile_id = $profile->id; +$notice->whereAdd("lat != ''"); +$notice->find(); + +if ($notice->N) { + print " $notice->N found.\n"; + while ($notice->fetch()) { + print "notice id $notice->id "; + if (have_option('v') || have_option('--verbose')) { + print "({$notice->lat},{$notice->lon}) "; + if ($notice->location_ns) { + print "ns {$notice->location_ns} id {$notice->location_id} "; + } + } + if (have_option('--dry-run')) { + // sucka + echo "(skipped)"; + } else { + // note: setting fields to null and calling update() doesn't save the nulled fields + $orig = clone($notice); + $update = clone($notice); + + // In theory we could hit a chunk of notices at once in the UPDATE, + // but we're going to have to decache them individually anyway and + // it doesn't hurt to make sure we don't hold up replication with + // what might be a very slow single UPDATE. + $query = sprintf('UPDATE notice ' . + 'SET lat=NULL,lon=NULL,location_ns=NULL,location_id=NULL ' . + 'WHERE id=%d', $notice->id); + $ok = $update->query($query); + if ($ok) { + // And now we decache him manually, as query() doesn't know what we're doing... + $orig->blow(); + echo "(removed)"; + } else { + echo "(failed?)"; + } + } + print "\n"; + } +} else { + print " none found.\n"; +} + +print "DONE.\n"; From 6274c3977d25a1ca9313cc851230b9b520bd4197 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 13:12:14 -0700 Subject: [PATCH 14/80] In single-user mode, link #hashtags to the user's tagged stream rather than the global tag action, which isn't registered. Previously they would end up pointing to the home URL. --- lib/util.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 7959978683..e37df63484 100644 --- a/lib/util.php +++ b/lib/util.php @@ -862,7 +862,14 @@ function common_xml_safe_str($str) function common_tag_link($tag) { $canonical = common_canonical_tag($tag); - $url = common_local_url('tag', array('tag' => $canonical)); + if (common_config('singleuser', 'enabled')) { + // regular TagAction isn't set up in 1user mode + $url = common_local_url('showstream', + array('nickname' => common_config('singleuser', 'nickname'), + 'tag' => $canonical)); + } else { + $url = common_local_url('tag', array('tag' => $canonical)); + } $xs = new XMLStringer(); $xs->elementStart('span', 'tag'); $xs->element('a', array('href' => $url, From 05e373d29b91cf929d0ac2ad74a90dce264df022 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 17:05:02 -0700 Subject: [PATCH 15/80] scripts/strip_geo.php to remove geodata from notices by a given user/profile. May be slow or run out of memory if run on particularly prolific posters -- not yet optimized for that case. Note that geodata that has already been sent out to other services (via ostatus, omb, twitter, etc) will not be removed from them. (fixed version -- previous had accidentally undone another commit) --- scripts/strip_geo.php | 116 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100755 scripts/strip_geo.php diff --git a/scripts/strip_geo.php b/scripts/strip_geo.php new file mode 100755 index 0000000000..010fb31f54 --- /dev/null +++ b/scripts/strip_geo.php @@ -0,0 +1,116 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i::n::y'; +$longoptions = array('id=', 'nickname=', 'yes', 'dry-run'); + +$helptext = <<getProfile(); +} else { + print "You must provide either an ID or a nickname.\n\n"; + show_help(); + exit(1); +} + +if (!have_option('y', 'yes') && !have_option('--dry-run')) { + print "About to PERMANENTLY remove geolocation data from user '{$profile->nickname}' ({$profile->id})'s notices. Are you sure? [y/N] "; + $response = fgets(STDIN); + if (strtolower(trim($response)) != 'y') { + print "Aborting.\n"; + exit(0); + } +} + +// @fixme for a very prolific poster this could be too many. +print "Finding notices with geolocation data..."; +$notice = new Notice(); +$notice->profile_id = $profile->id; +$notice->whereAdd("lat != ''"); +$notice->find(); + +if ($notice->N) { + print " $notice->N found.\n"; + while ($notice->fetch()) { + print "notice id $notice->id "; + if (have_option('v') || have_option('--verbose')) { + print "({$notice->lat},{$notice->lon}) "; + if ($notice->location_ns) { + print "ns {$notice->location_ns} id {$notice->location_id} "; + } + } + if (have_option('--dry-run')) { + // sucka + echo "(skipped)"; + } else { + // note: setting fields to null and calling update() doesn't save the nulled fields + $orig = clone($notice); + $update = clone($notice); + + // In theory we could hit a chunk of notices at once in the UPDATE, + // but we're going to have to decache them individually anyway and + // it doesn't hurt to make sure we don't hold up replication with + // what might be a very slow single UPDATE. + $query = sprintf('UPDATE notice ' . + 'SET lat=NULL,lon=NULL,location_ns=NULL,location_id=NULL ' . + 'WHERE id=%d', $notice->id); + $ok = $update->query($query); + if ($ok) { + // And now we decache him manually, as query() doesn't know what we're doing... + $orig->blow(); + echo "(removed)"; + } else { + echo "(failed?)"; + } + } + print "\n"; + } +} else { + print " none found.\n"; +} + +print "DONE.\n"; From 5dbaaed4e68ecae1c78b9493add89df3557c8e98 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 8 Apr 2010 19:06:55 -0700 Subject: [PATCH 16/80] Maintain 'page' parameter for block from subscribers list, block & make-admin from group members list. Refactored some of the returnto handling code. It looks like we have several different ways of handling this in the software, icky! Marked the session-based functions with fixmes (they'll stomp on other forms when multiple tabs/windows are used) and combined some commonish bits of code between ProfileFormAction and the group block & makeadmin actions where they're using hidden form parameters. Extended that to allow passing dynamic parameters (eg 'page') as well as static ones (action, target user/group). --- actions/groupblock.php | 35 ++++++-------- actions/groupmembers.php | 23 ++++++++-- actions/makeadmin.php | 31 ++++++------- actions/subscribers.php | 10 ++-- lib/profileformaction.php | 25 +--------- lib/redirectingaction.php | 96 +++++++++++++++++++++++++++++++++++++++ lib/util.php | 26 +++++++++++ 7 files changed, 179 insertions(+), 67 deletions(-) create mode 100644 lib/redirectingaction.php diff --git a/actions/groupblock.php b/actions/groupblock.php index 88d7634a28..fc95c0e669 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -41,7 +41,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @link http://status.net/ */ -class GroupblockAction extends Action +class GroupblockAction extends RedirectingAction { var $profile = null; var $group = null; @@ -117,9 +117,7 @@ class GroupblockAction extends Action parent::handle($args); if ($_SERVER['REQUEST_METHOD'] == 'POST') { if ($this->arg('no')) { - common_redirect(common_local_url('groupmembers', - array('nickname' => $this->group->nickname)), - 303); + $this->returnToArgs(); } elseif ($this->arg('yes')) { $this->blockProfile(); } elseif ($this->arg('blockto')) { @@ -196,23 +194,20 @@ class GroupblockAction extends Action $this->serverError(_("Database error blocking user from group.")); return false; } + + $this->returnToArgs(); + } - // Now, gotta figure where we go back to - foreach ($this->args as $k => $v) { - if ($k == 'returnto-action') { - $action = $v; - } elseif (substr($k, 0, 9) == 'returnto-') { - $args[substr($k, 9)] = $v; - } - } - - if ($action) { - common_redirect(common_local_url($action, $args), 303); - } else { - common_redirect(common_local_url('groupmembers', - array('nickname' => $this->group->nickname)), - 303); - } + /** + * If we reached this form without returnto arguments, default to + * the top of the group's member list. + * + * @return string URL + */ + function defaultReturnTo() + { + return common_local_url('groupmembers', + array('nickname' => $this->group->nickname)); } function showScripts() diff --git a/actions/groupmembers.php b/actions/groupmembers.php index fb4e46dbc0..6d0701239f 100644 --- a/actions/groupmembers.php +++ b/actions/groupmembers.php @@ -205,8 +205,7 @@ class GroupMemberListItem extends ProfileListItem !$this->profile->isAdmin($this->group)) { $this->out->elementStart('li', 'entity_make_admin'); $maf = new MakeAdminForm($this->out, $this->profile, $this->group, - array('action' => 'groupmembers', - 'nickname' => $this->group->nickname)); + $this->returnToArgs()); $maf->show(); $this->out->elementEnd('li'); } @@ -220,8 +219,7 @@ class GroupMemberListItem extends ProfileListItem if (!empty($user) && $user->id != $this->profile->id && $user->isAdmin($this->group)) { $this->out->elementStart('li', 'entity_block'); $bf = new GroupBlockForm($this->out, $this->profile, $this->group, - array('action' => 'groupmembers', - 'nickname' => $this->group->nickname)); + $this->returnToArgs()); $bf->show(); $this->out->elementEnd('li'); } @@ -244,6 +242,23 @@ class GroupMemberListItem extends ProfileListItem $aAttrs['rel'] = 'nofollow'; } } + + /** + * Fetch necessary return-to arguments for the profile forms + * to return to this list when they're done. + * + * @return array + */ + protected function returnToArgs() + { + $args = array('action' => 'groupmembers', + 'nickname' => $this->group->nickname); + $page = $this->out->arg('page'); + if ($page) { + $args['param-page'] = $page; + } + return $args; + } } /** diff --git a/actions/makeadmin.php b/actions/makeadmin.php index f19348648d..9ccb442308 100644 --- a/actions/makeadmin.php +++ b/actions/makeadmin.php @@ -41,7 +41,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @link http://status.net/ */ -class MakeadminAction extends Action +class MakeadminAction extends RedirectingAction { var $profile = null; var $group = null; @@ -148,20 +148,19 @@ class MakeadminAction extends Action $this->group->getBestName()); } - foreach ($this->args as $k => $v) { - if ($k == 'returnto-action') { - $action = $v; - } else if (substr($k, 0, 9) == 'returnto-') { - $args[substr($k, 9)] = $v; - } - } - - if ($action) { - common_redirect(common_local_url($action, $args), 303); - } else { - common_redirect(common_local_url('groupmembers', - array('nickname' => $this->group->nickname)), - 303); - } + $this->returnToArgs(); } + + /** + * If we reached this form without returnto arguments, default to + * the top of the group's member list. + * + * @return string URL + */ + function defaultReturnTo() + { + return common_local_url('groupmembers', + array('nickname' => $this->group->nickname)); + } + } diff --git a/actions/subscribers.php b/actions/subscribers.php index 6dda7312d6..6fdf43e2cc 100644 --- a/actions/subscribers.php +++ b/actions/subscribers.php @@ -157,9 +157,13 @@ class SubscribersListItem extends SubscriptionListItem $user = common_current_user(); if (!empty($user) && $this->owner->id == $user->id) { - $bf = new BlockForm($this->out, $this->profile, - array('action' => 'subscribers', - 'nickname' => $this->owner->nickname)); + $returnto = array('action' => 'subscribers', + 'nickname' => $this->owner->nickname); + $page = $this->out->arg('page'); + if ($page) { + $returnto['param-page'] = $page; + } + $bf = new BlockForm($this->out, $this->profile, $returnto); $bf->show(); } } diff --git a/lib/profileformaction.php b/lib/profileformaction.php index 8a934666e3..0ffafe5fb8 100644 --- a/lib/profileformaction.php +++ b/lib/profileformaction.php @@ -41,7 +41,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @link http://status.net/ */ -class ProfileFormAction extends Action +class ProfileFormAction extends RedirectingAction { var $profile = null; @@ -101,29 +101,6 @@ class ProfileFormAction extends Action } } - /** - * Return to the calling page based on hidden arguments - * - * @return void - */ - - function returnToArgs() - { - foreach ($this->args as $k => $v) { - if ($k == 'returnto-action') { - $action = $v; - } else if (substr($k, 0, 9) == 'returnto-') { - $args[substr($k, 9)] = $v; - } - } - - if ($action) { - common_redirect(common_local_url($action, $args), 303); - } else { - $this->clientError(_("No return-to arguments.")); - } - } - /** * handle a POST request * diff --git a/lib/redirectingaction.php b/lib/redirectingaction.php new file mode 100644 index 0000000000..f115852742 --- /dev/null +++ b/lib/redirectingaction.php @@ -0,0 +1,96 @@ +. + * + * @category Action + * @package StatusNet + * @author Evan Prodromou + * @author Brion Vibber + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + +/** + * Superclass for actions that redirect to a given return-to page on completion. + * + * @category Action + * @package StatusNet + * @author Evan Prodromou + * @author Brion Vibber + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + */ + + +class RedirectingAction extends Action +{ + + /** + * Redirect browser to the page our hidden parameters requested, + * or if none given, to the url given by $this->defaultReturnTo(). + * + * To be called only after successful processing. + * + * @fixme rename this -- it obscures Action::returnToArgs() which + * returns a list of arguments, and is a bit confusing. + * + * @return void + */ + function returnToArgs() + { + // Now, gotta figure where we go back to + $action = false; + $args = array(); + $params = array(); + foreach ($this->args as $k => $v) { + if ($k == 'returnto-action') { + $action = $v; + } else if (substr($k, 0, 15) == 'returnto-param-') { + $params[substr($k, 15)] = $v; + } elseif (substr($k, 0, 9) == 'returnto-') { + $args[substr($k, 9)] = $v; + } + } + + if ($action) { + common_redirect(common_local_url($action, $args, $params), 303); + } else { + $url = $this->defaultReturnToUrl(); + } + common_redirect($url, 303); + } + + /** + * If we reached this form without returnto arguments, where should + * we go? May be overridden by subclasses to a reasonable destination + * for that action; default implementation throws an exception. + * + * @return string URL + */ + function defaultReturnTo() + { + $this->clientError(_("No return-to arguments.")); + } +} diff --git a/lib/util.php b/lib/util.php index bbc3341769..6905df839a 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1279,12 +1279,38 @@ function common_mtrand($bytes) return $enc; } +/** + * Record the given URL as the return destination for a future + * form submission, to be read by common_get_returnto(). + * + * @param string $url + * + * @fixme as a session-global setting, this can allow multiple forms + * to conflict and overwrite each others' returnto destinations if + * the user has multiple tabs or windows open. + * + * Should refactor to index with a token or otherwise only pass the + * data along its intended path. + */ function common_set_returnto($url) { common_ensure_session(); $_SESSION['returnto'] = $url; } +/** + * Fetch a return-destination URL previously recorded by + * common_set_returnto(). + * + * @return mixed URL string or null + * + * @fixme as a session-global setting, this can allow multiple forms + * to conflict and overwrite each others' returnto destinations if + * the user has multiple tabs or windows open. + * + * Should refactor to index with a token or otherwise only pass the + * data along its intended path. + */ function common_get_returnto() { common_ensure_session(); From eefde36fcf5c24c55fb8906374bac5c4c370cb54 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Fri, 9 Apr 2010 06:03:53 -0400 Subject: [PATCH 17/80] Undefined Variable in foafgroup.php Probably just left over from the past. --- actions/foafgroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/foafgroup.php b/actions/foafgroup.php index d685554ac4..07cca31811 100644 --- a/actions/foafgroup.php +++ b/actions/foafgroup.php @@ -56,7 +56,7 @@ class FoafGroupAction extends Action return false; } - $local = Local_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $this->nickname); if (!$local) { $this->clientError(_('No such group.'), 404); From 2be04e2a631ea9f373386bed792e7233418e2ee2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 08:36:13 -0700 Subject: [PATCH 18/80] Avoid E_NOTICE spew when listing group members who aren't admins --- actions/foafgroup.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actions/foafgroup.php b/actions/foafgroup.php index 07cca31811..4db40c28be 100644 --- a/actions/foafgroup.php +++ b/actions/foafgroup.php @@ -126,7 +126,8 @@ class FoafGroupAction extends Action while ($members->fetch()) { $member_uri = common_local_url('userbyid', array('id'=>$members->id)); $member_details[$member_uri] = array( - 'nickname' => $members->nickname + 'nickname' => $members->nickname, + 'is_admin' => false, ); $this->element('member', array('rdf:resource' => $member_uri)); } From a93d0dc16af0438af59d14f8413dabb80c13b707 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Fri, 9 Apr 2010 06:03:53 -0400 Subject: [PATCH 19/80] Undefined Variable in foafgroup.php Probably just left over from the past. --- actions/foafgroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/foafgroup.php b/actions/foafgroup.php index d685554ac4..07cca31811 100644 --- a/actions/foafgroup.php +++ b/actions/foafgroup.php @@ -56,7 +56,7 @@ class FoafGroupAction extends Action return false; } - $local = Local_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $this->nickname); if (!$local) { $this->clientError(_('No such group.'), 404); From 7baf671570b1190c54c9b7e763fdaf0ab454b6a7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 08:36:13 -0700 Subject: [PATCH 20/80] Avoid E_NOTICE spew when listing group members who aren't admins --- actions/foafgroup.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actions/foafgroup.php b/actions/foafgroup.php index 07cca31811..4db40c28be 100644 --- a/actions/foafgroup.php +++ b/actions/foafgroup.php @@ -126,7 +126,8 @@ class FoafGroupAction extends Action while ($members->fetch()) { $member_uri = common_local_url('userbyid', array('id'=>$members->id)); $member_details[$member_uri] = array( - 'nickname' => $members->nickname + 'nickname' => $members->nickname, + 'is_admin' => false, ); $this->element('member', array('rdf:resource' => $member_uri)); } From a5cfc3954f807a6c31e67bd8c9a3ee353e250da0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 08:56:43 -0700 Subject: [PATCH 21/80] Fix localization for license notice in page footer (for ticket #2274: i18n cleanup) --- lib/action.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/action.php b/lib/action.php index 09113a598e..0fc3a0dc43 100644 --- a/lib/action.php +++ b/lib/action.php @@ -845,14 +845,16 @@ class Action extends HTMLOutputter // lawsuit 'width' => '80', 'height' => '15')); $this->text(' '); - //TODO: This is dirty: i18n - $this->text(_('All '.common_config('site', 'name').' content and data are available under the ')); - $this->element('a', array('class' => 'license', - 'rel' => 'external license', - 'href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(' '); - $this->text(_('license.')); + // TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. + $notice = _('All %1$s content and data are available under the %2$s license.'); + $link = "" . + htmlspecialchars(common_config('license', 'title')) . + ""; + $this->raw(sprintf(htmlspecialchars($notice), + htmlspecialchars(common_config('site', 'name')), + $link)); $this->elementEnd('p'); break; } From 4a028d5e359bf4fdca96c29c9c6b2292cbbc0cb4 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 08:56:43 -0700 Subject: [PATCH 22/80] Fix localization for license notice in page footer (for ticket #2274: i18n cleanup) --- lib/action.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/action.php b/lib/action.php index 09113a598e..0fc3a0dc43 100644 --- a/lib/action.php +++ b/lib/action.php @@ -845,14 +845,16 @@ class Action extends HTMLOutputter // lawsuit 'width' => '80', 'height' => '15')); $this->text(' '); - //TODO: This is dirty: i18n - $this->text(_('All '.common_config('site', 'name').' content and data are available under the ')); - $this->element('a', array('class' => 'license', - 'rel' => 'external license', - 'href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(' '); - $this->text(_('license.')); + // TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. + $notice = _('All %1$s content and data are available under the %2$s license.'); + $link = "" . + htmlspecialchars(common_config('license', 'title')) . + ""; + $this->raw(sprintf(htmlspecialchars($notice), + htmlspecialchars(common_config('site', 'name')), + $link)); $this->elementEnd('p'); break; } From 41062d387f2e163fd023bbafadfcb10072c068ec Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 08:56:43 -0700 Subject: [PATCH 23/80] Fix localization for license notice in page footer (for ticket #2274: i18n cleanup) --- lib/action.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/action.php b/lib/action.php index 09113a598e..0fc3a0dc43 100644 --- a/lib/action.php +++ b/lib/action.php @@ -845,14 +845,16 @@ class Action extends HTMLOutputter // lawsuit 'width' => '80', 'height' => '15')); $this->text(' '); - //TODO: This is dirty: i18n - $this->text(_('All '.common_config('site', 'name').' content and data are available under the ')); - $this->element('a', array('class' => 'license', - 'rel' => 'external license', - 'href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(' '); - $this->text(_('license.')); + // TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. + $notice = _('All %1$s content and data are available under the %2$s license.'); + $link = "" . + htmlspecialchars(common_config('license', 'title')) . + ""; + $this->raw(sprintf(htmlspecialchars($notice), + htmlspecialchars(common_config('site', 'name')), + $link)); $this->elementEnd('p'); break; } From 13e8214a67815b92dea53de3f0644897b15c7c19 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 09:22:33 -0700 Subject: [PATCH 24/80] Initial version of everplay's RTL direction detector plugin, sets initial direction correctly for primarily RTL notices within an LTR site layout. --- .../DirectionDetectorPlugin.php | 230 ++++++++++++++++++ 1 file changed, 230 insertions(+) create mode 100644 plugins/DirectionDetector/DirectionDetectorPlugin.php diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php new file mode 100644 index 0000000000..303e60d5f4 --- /dev/null +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -0,0 +1,230 @@ +. + * + * @category Plugin + * @package StatusNet + * @author Behrooz shabani (everplays) - + * @copyright 2009-2010 Behrooz shabani + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +define('DIRECTIONDETECTORPLUGIN_VERSION', '0.1.1'); + +class DirectionDetectorPlugin extends Plugin { + /** + * SN plugin API, here we will make changes on rendered column + * + * @param object $notice notice is going to be saved + */ + public function onStartNoticeSave(&$notice){ + if(self::isRTL($notice->content)) + $notice->rendered = ''.$notice->rendered.''; + return true; + } + + /** + * SN plugin API, here we will add css needed for modifiyed rendered + * + * @param + */ + public function onEndShowStatusNetStyles(&$xml){ + $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;width:490px;} .notice .author {float:left}'); + } + /** + * checks that passed string is a RTL language or not + * + * @param string $str string to be checked + */ + public static function isRTL($str){ + self::getClearText($str); + if( is_array($cc = self::utf8ToUnicode(mb_substr($str, 0, 1, 'utf-8'))) ) + $cc = $cc[0]; + else + return false; + if($cc>=1536 && $cc<=1791) // arabic, persian, urdu, kurdish, ... + return true; + if($cc>=65136 && $cc<=65279) // arabic peresent 2 + return true; + if($cc>=64336 && $cc<=65023) // arabic peresent 1 + return true; + if($cc>=1424 && $cc<=1535) // hebrew + return true; + if($cc>=64256 && $cc<=64335) // hebrew peresent + return true; + if($cc>=1792 && $cc<=1871) // Syriac + return true; + if($cc>=1920 && $cc<=1983) // Thaana + return true; + if($cc>=1984 && $cc<=2047) // NKo + return true; + if($cc>=11568 && $cc<=11647) // Tifinagh + return true; + return false; + } + + /** + * clears text from replys, tags, groups, reteets & whitespaces + * + * @param string &$str string to be cleared + */ + private static function getClearText(&$str){ + $str = preg_replace('/@[^ ]+|![^ ]+|#[^ ]+/u', '', $str); // reply, tag, group + $str = preg_replace('/^RT[: ]{1}| RT | RT: |^RD[: ]{1}| RD | RD: |[♺♻:]/u', '', $str); // redent, retweet + $str = preg_replace("/[ \r\t\n]+/", ' ', trim($str)); // remove spaces + } + + /** + * Takes an UTF-8 string and returns an array of ints representing the + * Unicode characters. Astral planes are supported ie. the ints in the + * output can be > 0xFFFF. O$ccurrances of the BOM are ignored. Surrogates + * are not allowed. ### modified ### returns first character code + * + * Returns false if the input string isn't a valid UTF-8 octet sequence. + */ + private static function utf8ToUnicode(&$str){ + $mState = 0; // cached expected number of octets after the current octet + // until the beginning of the next UTF8 character sequence + $mUcs4 = 0; // cached Unicode character + $mBytes = 1; // cached expected number of octets in the current sequence + $out = array(); + $len = strlen($str); + + for($i = 0; $i < $len; $i++) { + $in = ord($str{$i}); + if (0 == $mState) { + // When mState is zero we expect either a US-ASCII character or a + // multi-octet sequence. + if (0 == (0x80 & ($in))) { + // US-ASCII, pass straight through. + $out[] = $in; + $mBytes = 1; + } elseif (0xC0 == (0xE0 & ($in))) { + // First octet of 2 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x1F) << 6; + $mState = 1; + $mBytes = 2; + } elseif (0xE0 == (0xF0 & ($in))) { + // First octet of 3 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x0F) << 12; + $mState = 2; + $mBytes = 3; + } elseif (0xF0 == (0xF8 & ($in))) { + // First octet of 4 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x07) << 18; + $mState = 3; + $mBytes = 4; + } elseif (0xF8 == (0xFC & ($in))) { + /* First octet of 5 octet sequence. + * + * This is illegal because the encoded codepoint must be either + * (a) not the shortest form or + * (b) outside the Unicode range of 0-0x10FFFF. + * Rather than trying to resynchronize, we will carry on until the end + * of the sequence and let the later error handling code catch it. + */ + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x03) << 24; + $mState = 4; + $mBytes = 5; + } elseif (0xFC == (0xFE & ($in))) { + // First octet of 6 octet sequence, see comments for 5 octet sequence. + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 1) << 30; + $mState = 5; + $mBytes = 6; + } else { + /* Current octet is neither in the US-ASCII range nor a legal first + * octet of a multi-octet sequence. + */ + return false; + } + } else { + // When mState is non-zero, we expect a continuation of the multi-octet + // sequence + if (0x80 == (0xC0 & ($in))) { + // Legal continuation. + $shift = ($mState - 1) * 6; + $tmp = $in; + $tmp = ($tmp & 0x0000003F) << $shift; + $mUcs4 |= $tmp; + if (0 == --$mState) { + /* End of the multi-octet sequence. mUcs4 now contains the final + * Unicode codepoint to be output + * + * Check for illegal sequences and codepoints. + */ + // From Unicode 3.1, non-shortest form is illegal + if ( + ((2 == $mBytes) && ($mUcs4 < 0x0080)) || + ((3 == $mBytes) && ($mUcs4 < 0x0800)) || + ((4 == $mBytes) && ($mUcs4 < 0x10000)) || + (4 < $mBytes) || + // From Unicode 3.2, surrogate characters are illegal + (($mUcs4 & 0xFFFFF800) == 0xD800) || + // Codepoints outside the Unicode range are illegal + ($mUcs4 > 0x10FFFF) + ){ + return false; + } + if (0xFEFF != $mUcs4) { + $out[] = $mUcs4; + } + //initialize UTF8 cache + $mState = 0; + $mUcs4 = 0; + $mBytes = 1; + } + } else { + /* ((0xC0 & (*in) != 0x80) && (mState != 0)) + * + * Incomplete multi-octet sequence. + */ + return false; + } + } + } + return $out; + } + + /** + * plugin details + */ + function onPluginVersion(&$versions){ + $versions[] = array( + 'name' => 'Direction detector', + 'version' => DIRECTIONDETECTORPLUGIN_VERSION, + 'author' => 'behrooz shabani', + 'rawdescription' => _m('shows notices with right-to-left content in correct direction.') + ); + return true; + } +} + +/* +// Example: +var_dump(DirectionDetectorPlugin::isRTL('RT @everplays ♺: دادگاه به دليل عدم حضور وکلای متهمان بنا بر اصل ١٣٥ قانون اساسی غير قانونی است')); // true +*/ From db497e80e8fcffeaac28ea3b672bc635d2fe4087 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 09:22:33 -0700 Subject: [PATCH 25/80] Initial version of everplay's RTL direction detector plugin, sets initial direction correctly for primarily RTL notices within an LTR site layout. --- .../DirectionDetectorPlugin.php | 230 ++++++++++++++++++ 1 file changed, 230 insertions(+) create mode 100644 plugins/DirectionDetector/DirectionDetectorPlugin.php diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php new file mode 100644 index 0000000000..303e60d5f4 --- /dev/null +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -0,0 +1,230 @@ +. + * + * @category Plugin + * @package StatusNet + * @author Behrooz shabani (everplays) - + * @copyright 2009-2010 Behrooz shabani + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +define('DIRECTIONDETECTORPLUGIN_VERSION', '0.1.1'); + +class DirectionDetectorPlugin extends Plugin { + /** + * SN plugin API, here we will make changes on rendered column + * + * @param object $notice notice is going to be saved + */ + public function onStartNoticeSave(&$notice){ + if(self::isRTL($notice->content)) + $notice->rendered = ''.$notice->rendered.''; + return true; + } + + /** + * SN plugin API, here we will add css needed for modifiyed rendered + * + * @param + */ + public function onEndShowStatusNetStyles(&$xml){ + $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;width:490px;} .notice .author {float:left}'); + } + /** + * checks that passed string is a RTL language or not + * + * @param string $str string to be checked + */ + public static function isRTL($str){ + self::getClearText($str); + if( is_array($cc = self::utf8ToUnicode(mb_substr($str, 0, 1, 'utf-8'))) ) + $cc = $cc[0]; + else + return false; + if($cc>=1536 && $cc<=1791) // arabic, persian, urdu, kurdish, ... + return true; + if($cc>=65136 && $cc<=65279) // arabic peresent 2 + return true; + if($cc>=64336 && $cc<=65023) // arabic peresent 1 + return true; + if($cc>=1424 && $cc<=1535) // hebrew + return true; + if($cc>=64256 && $cc<=64335) // hebrew peresent + return true; + if($cc>=1792 && $cc<=1871) // Syriac + return true; + if($cc>=1920 && $cc<=1983) // Thaana + return true; + if($cc>=1984 && $cc<=2047) // NKo + return true; + if($cc>=11568 && $cc<=11647) // Tifinagh + return true; + return false; + } + + /** + * clears text from replys, tags, groups, reteets & whitespaces + * + * @param string &$str string to be cleared + */ + private static function getClearText(&$str){ + $str = preg_replace('/@[^ ]+|![^ ]+|#[^ ]+/u', '', $str); // reply, tag, group + $str = preg_replace('/^RT[: ]{1}| RT | RT: |^RD[: ]{1}| RD | RD: |[♺♻:]/u', '', $str); // redent, retweet + $str = preg_replace("/[ \r\t\n]+/", ' ', trim($str)); // remove spaces + } + + /** + * Takes an UTF-8 string and returns an array of ints representing the + * Unicode characters. Astral planes are supported ie. the ints in the + * output can be > 0xFFFF. O$ccurrances of the BOM are ignored. Surrogates + * are not allowed. ### modified ### returns first character code + * + * Returns false if the input string isn't a valid UTF-8 octet sequence. + */ + private static function utf8ToUnicode(&$str){ + $mState = 0; // cached expected number of octets after the current octet + // until the beginning of the next UTF8 character sequence + $mUcs4 = 0; // cached Unicode character + $mBytes = 1; // cached expected number of octets in the current sequence + $out = array(); + $len = strlen($str); + + for($i = 0; $i < $len; $i++) { + $in = ord($str{$i}); + if (0 == $mState) { + // When mState is zero we expect either a US-ASCII character or a + // multi-octet sequence. + if (0 == (0x80 & ($in))) { + // US-ASCII, pass straight through. + $out[] = $in; + $mBytes = 1; + } elseif (0xC0 == (0xE0 & ($in))) { + // First octet of 2 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x1F) << 6; + $mState = 1; + $mBytes = 2; + } elseif (0xE0 == (0xF0 & ($in))) { + // First octet of 3 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x0F) << 12; + $mState = 2; + $mBytes = 3; + } elseif (0xF0 == (0xF8 & ($in))) { + // First octet of 4 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x07) << 18; + $mState = 3; + $mBytes = 4; + } elseif (0xF8 == (0xFC & ($in))) { + /* First octet of 5 octet sequence. + * + * This is illegal because the encoded codepoint must be either + * (a) not the shortest form or + * (b) outside the Unicode range of 0-0x10FFFF. + * Rather than trying to resynchronize, we will carry on until the end + * of the sequence and let the later error handling code catch it. + */ + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x03) << 24; + $mState = 4; + $mBytes = 5; + } elseif (0xFC == (0xFE & ($in))) { + // First octet of 6 octet sequence, see comments for 5 octet sequence. + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 1) << 30; + $mState = 5; + $mBytes = 6; + } else { + /* Current octet is neither in the US-ASCII range nor a legal first + * octet of a multi-octet sequence. + */ + return false; + } + } else { + // When mState is non-zero, we expect a continuation of the multi-octet + // sequence + if (0x80 == (0xC0 & ($in))) { + // Legal continuation. + $shift = ($mState - 1) * 6; + $tmp = $in; + $tmp = ($tmp & 0x0000003F) << $shift; + $mUcs4 |= $tmp; + if (0 == --$mState) { + /* End of the multi-octet sequence. mUcs4 now contains the final + * Unicode codepoint to be output + * + * Check for illegal sequences and codepoints. + */ + // From Unicode 3.1, non-shortest form is illegal + if ( + ((2 == $mBytes) && ($mUcs4 < 0x0080)) || + ((3 == $mBytes) && ($mUcs4 < 0x0800)) || + ((4 == $mBytes) && ($mUcs4 < 0x10000)) || + (4 < $mBytes) || + // From Unicode 3.2, surrogate characters are illegal + (($mUcs4 & 0xFFFFF800) == 0xD800) || + // Codepoints outside the Unicode range are illegal + ($mUcs4 > 0x10FFFF) + ){ + return false; + } + if (0xFEFF != $mUcs4) { + $out[] = $mUcs4; + } + //initialize UTF8 cache + $mState = 0; + $mUcs4 = 0; + $mBytes = 1; + } + } else { + /* ((0xC0 & (*in) != 0x80) && (mState != 0)) + * + * Incomplete multi-octet sequence. + */ + return false; + } + } + } + return $out; + } + + /** + * plugin details + */ + function onPluginVersion(&$versions){ + $versions[] = array( + 'name' => 'Direction detector', + 'version' => DIRECTIONDETECTORPLUGIN_VERSION, + 'author' => 'behrooz shabani', + 'rawdescription' => _m('shows notices with right-to-left content in correct direction.') + ); + return true; + } +} + +/* +// Example: +var_dump(DirectionDetectorPlugin::isRTL('RT @everplays ♺: دادگاه به دليل عدم حضور وکلای متهمان بنا بر اصل ١٣٥ قانون اساسی غير قانونی است')); // true +*/ From f13bf37e11371dace9998e0c1cc03d233f986869 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 09:43:34 -0700 Subject: [PATCH 26/80] Cleanup bad i18n format for page title on bookmarklet posting window --- actions/bookmarklet.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actions/bookmarklet.php b/actions/bookmarklet.php index 0603a74561..041c2e8947 100644 --- a/actions/bookmarklet.php +++ b/actions/bookmarklet.php @@ -47,7 +47,8 @@ class BookmarkletAction extends NewnoticeAction { function showTitle() { - $this->element('title', null, _('Post to ').common_config('site', 'name')); + // TRANS: Title for mini-posting window loaded from bookmarklet. + $this->element('title', null, sprintf(_('Post to %s'), common_config('site', 'name'))); } function showHeader() From b76b0d3a5ff59b636ccde6966c08f1ea00705a0d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 09:43:34 -0700 Subject: [PATCH 27/80] Cleanup bad i18n format for page title on bookmarklet posting window --- actions/bookmarklet.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actions/bookmarklet.php b/actions/bookmarklet.php index 0603a74561..041c2e8947 100644 --- a/actions/bookmarklet.php +++ b/actions/bookmarklet.php @@ -47,7 +47,8 @@ class BookmarkletAction extends NewnoticeAction { function showTitle() { - $this->element('title', null, _('Post to ').common_config('site', 'name')); + // TRANS: Title for mini-posting window loaded from bookmarklet. + $this->element('title', null, sprintf(_('Post to %s'), common_config('site', 'name'))); } function showHeader() From f115c52d90ff1572e49cfdb2333d6638ebbccf88 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 09:56:19 -0700 Subject: [PATCH 28/80] Clean up badly formatted strings in OembedAction --- actions/oembed.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/actions/oembed.php b/actions/oembed.php index e287b6ae2a..4a11a85e09 100644 --- a/actions/oembed.php +++ b/actions/oembed.php @@ -154,10 +154,12 @@ class OembedAction extends Action $this->end_document('json'); break; default: - $this->serverError(_('content type ' . $apidata['content-type'] . ' not supported'), 501); + // TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') + $this->serverError(sprintf(_('content type %s not supported'), $apidata['content-type']), 501); } }else{ - $this->serverError(_('Only ' . common_root_url() . ' urls over plain http please'), 404); + // TRANS: Error message displaying attachments. %s is the site's base URL. + $this->serverError(sprintf(_('Only %s urls over plain http please'), common_root_url()), 404); } } From 4b20d68c4851a2d7a7fca521f07ddba74187c53b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 10:11:11 -0700 Subject: [PATCH 29/80] i18n cleanup: fix bad string breakdown in license agreement checkbox on registration form. Note that much of that form is duplicated several times for Twitter, Facebook, and OpenID registrations -- these need to be refactored to avoid having multiple out-of-sync copies of code and messages. --- actions/register.php | 14 +++++++++----- plugins/Facebook/FBConnectAuth.php | 18 ++++++++++++++---- plugins/OpenID/finishopenidlogin.php | 18 ++++++++++++++---- plugins/TwitterBridge/twitterauthorization.php | 18 ++++++++++++++---- 4 files changed, 51 insertions(+), 17 deletions(-) diff --git a/actions/register.php b/actions/register.php index ccab76cf01..da8d0a0bbc 100644 --- a/actions/register.php +++ b/actions/register.php @@ -491,11 +491,15 @@ class RegisterAction extends Action $this->elementStart('li'); $this->element('input', $attrs); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $this->text(_('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title'), _("Creative Commons Attribution 3.0")); - $this->text(_(' except this private data: password, '. - 'email address, IM address, and phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '' . + htmlspecialchars(common_config('license', 'title')) . + ''; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); } diff --git a/plugins/Facebook/FBConnectAuth.php b/plugins/Facebook/FBConnectAuth.php index 51bfc38657..8eba7fc135 100644 --- a/plugins/Facebook/FBConnectAuth.php +++ b/plugins/Facebook/FBConnectAuth.php @@ -138,6 +138,11 @@ class FBConnectauthAction extends Action parent::showPage(); } + /** + * @fixme much of this duplicates core code, which is very fragile. + * Should probably be replaced with an extensible mini version of + * the core registration form. + */ function showContent() { if (!empty($this->message_text)) { @@ -159,10 +164,15 @@ class FBConnectauthAction extends Action 'name' => 'license', 'value' => 'true')); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $this->text(_m('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(_m(' except this private data: password, email address, IM address, phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '' . + htmlspecialchars(common_config('license', 'title')) . + ''; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); $this->elementEnd('ul'); diff --git a/plugins/OpenID/finishopenidlogin.php b/plugins/OpenID/finishopenidlogin.php index f3a4833006..32b092a0bd 100644 --- a/plugins/OpenID/finishopenidlogin.php +++ b/plugins/OpenID/finishopenidlogin.php @@ -79,6 +79,11 @@ class FinishopenidloginAction extends Action $this->showPage(); } + /** + * @fixme much of this duplicates core code, which is very fragile. + * Should probably be replaced with an extensible mini version of + * the core registration form. + */ function showContent() { if (!empty($this->message_text)) { @@ -110,10 +115,15 @@ class FinishopenidloginAction extends Action 'value' => 'true')); $this->elementStart('label', array('for' => 'license', 'class' => 'checkbox')); - $this->text(_m('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(_m(' except this private data: password, email address, IM address, phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '' . + htmlspecialchars(common_config('license', 'title')) . + ''; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); $this->elementEnd('ul'); diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index bc004cb955..7a896e1687 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -332,6 +332,11 @@ class TwitterauthorizationAction extends Action parent::showPage(); } + /** + * @fixme much of this duplicates core code, which is very fragile. + * Should probably be replaced with an extensible mini version of + * the core registration form. + */ function showContent() { if (!empty($this->message_text)) { @@ -353,10 +358,15 @@ class TwitterauthorizationAction extends Action 'name' => 'license', 'value' => 'true')); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $this->text(_('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(_(' except this private data: password, email address, IM address, phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '' . + htmlspecialchars(common_config('license', 'title')) . + ''; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); $this->elementEnd('ul'); From 756dd1551577606ae83eb2a0baf09ed4917f8c9e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 10:11:11 -0700 Subject: [PATCH 30/80] i18n cleanup: fix bad string breakdown in license agreement checkbox on registration form. Note that much of that form is duplicated several times for Twitter, Facebook, and OpenID registrations -- these need to be refactored to avoid having multiple out-of-sync copies of code and messages. --- actions/register.php | 14 +++++++++----- plugins/Facebook/FBConnectAuth.php | 18 ++++++++++++++---- plugins/OpenID/finishopenidlogin.php | 18 ++++++++++++++---- plugins/TwitterBridge/twitterauthorization.php | 18 ++++++++++++++---- 4 files changed, 51 insertions(+), 17 deletions(-) diff --git a/actions/register.php b/actions/register.php index ccab76cf01..da8d0a0bbc 100644 --- a/actions/register.php +++ b/actions/register.php @@ -491,11 +491,15 @@ class RegisterAction extends Action $this->elementStart('li'); $this->element('input', $attrs); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $this->text(_('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title'), _("Creative Commons Attribution 3.0")); - $this->text(_(' except this private data: password, '. - 'email address, IM address, and phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '' . + htmlspecialchars(common_config('license', 'title')) . + ''; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); } diff --git a/plugins/Facebook/FBConnectAuth.php b/plugins/Facebook/FBConnectAuth.php index 51bfc38657..8eba7fc135 100644 --- a/plugins/Facebook/FBConnectAuth.php +++ b/plugins/Facebook/FBConnectAuth.php @@ -138,6 +138,11 @@ class FBConnectauthAction extends Action parent::showPage(); } + /** + * @fixme much of this duplicates core code, which is very fragile. + * Should probably be replaced with an extensible mini version of + * the core registration form. + */ function showContent() { if (!empty($this->message_text)) { @@ -159,10 +164,15 @@ class FBConnectauthAction extends Action 'name' => 'license', 'value' => 'true')); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $this->text(_m('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(_m(' except this private data: password, email address, IM address, phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '' . + htmlspecialchars(common_config('license', 'title')) . + ''; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); $this->elementEnd('ul'); diff --git a/plugins/OpenID/finishopenidlogin.php b/plugins/OpenID/finishopenidlogin.php index f3a4833006..32b092a0bd 100644 --- a/plugins/OpenID/finishopenidlogin.php +++ b/plugins/OpenID/finishopenidlogin.php @@ -79,6 +79,11 @@ class FinishopenidloginAction extends Action $this->showPage(); } + /** + * @fixme much of this duplicates core code, which is very fragile. + * Should probably be replaced with an extensible mini version of + * the core registration form. + */ function showContent() { if (!empty($this->message_text)) { @@ -110,10 +115,15 @@ class FinishopenidloginAction extends Action 'value' => 'true')); $this->elementStart('label', array('for' => 'license', 'class' => 'checkbox')); - $this->text(_m('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(_m(' except this private data: password, email address, IM address, phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '' . + htmlspecialchars(common_config('license', 'title')) . + ''; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); $this->elementEnd('ul'); diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index bc004cb955..7a896e1687 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -332,6 +332,11 @@ class TwitterauthorizationAction extends Action parent::showPage(); } + /** + * @fixme much of this duplicates core code, which is very fragile. + * Should probably be replaced with an extensible mini version of + * the core registration form. + */ function showContent() { if (!empty($this->message_text)) { @@ -353,10 +358,15 @@ class TwitterauthorizationAction extends Action 'name' => 'license', 'value' => 'true')); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $this->text(_('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title')); - $this->text(_(' except this private data: password, email address, IM address, phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '' . + htmlspecialchars(common_config('license', 'title')) . + ''; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); $this->elementEnd('ul'); From 80bd77ced34ff87f5da2739e8ee95d627741d3bf Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 10:46:18 -0700 Subject: [PATCH 31/80] Run block checks on remote OStatus replies --- classes/Notice.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/classes/Notice.php b/classes/Notice.php index be3e9ca2a6..b416e2ff28 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -964,11 +964,19 @@ class Notice extends Memcached_DataObject */ function saveKnownReplies($uris) { + if (empty($uris)) { + return; + } + $sender = Profile::staticGet($this->profile_id); + foreach ($uris as $uri) { $user = User::staticGet('uri', $uri); if (!empty($user)) { + if ($user->hasBlocked($sender)) { + continue; + } $reply = new Reply(); From 9cb0dab27036b237f9f325dc14c417e23fd475f7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 10:46:18 -0700 Subject: [PATCH 32/80] Run block checks on remote OStatus replies --- classes/Notice.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/classes/Notice.php b/classes/Notice.php index be3e9ca2a6..b416e2ff28 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -964,11 +964,19 @@ class Notice extends Memcached_DataObject */ function saveKnownReplies($uris) { + if (empty($uris)) { + return; + } + $sender = Profile::staticGet($this->profile_id); + foreach ($uris as $uri) { $user = User::staticGet('uri', $uri); if (!empty($user)) { + if ($user->hasBlocked($sender)) { + continue; + } $reply = new Reply(); From 4e3fad4f0d20e843cf42c07026ecbdb5a566562a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 9 Apr 2010 14:11:18 -0400 Subject: [PATCH 33/80] fix attributes on homepage output --- actions/groupmembers.php | 4 ++++ actions/peopletag.php | 4 ++++ actions/subscribers.php | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/actions/groupmembers.php b/actions/groupmembers.php index fb4e46dbc0..e72ef371ac 100644 --- a/actions/groupmembers.php +++ b/actions/groupmembers.php @@ -240,9 +240,13 @@ class GroupMemberListItem extends ProfileListItem function homepageAttributes() { + $aAttrs = parent::linkAttributes(); + if (common_config('nofollow', 'members')) { $aAttrs['rel'] = 'nofollow'; } + + return $aAttrs; } } diff --git a/actions/peopletag.php b/actions/peopletag.php index 456cc21c4c..32652f7551 100644 --- a/actions/peopletag.php +++ b/actions/peopletag.php @@ -168,9 +168,13 @@ class PeopleTagListItem extends ProfileListItem function homepageAttributes() { + $aAttrs = parent::linkAttributes(); + if (common_config('nofollow', 'peopletag')) { $aAttrs['rel'] = 'nofollow'; } + + return $aAttrs; } } diff --git a/actions/subscribers.php b/actions/subscribers.php index 6dda7312d6..6f1520b3f4 100644 --- a/actions/subscribers.php +++ b/actions/subscribers.php @@ -177,8 +177,12 @@ class SubscribersListItem extends SubscriptionListItem function homepageAttributes() { + $aAttrs = parent::linkAttributes(); + if (common_config('nofollow', 'subscribers')) { $aAttrs['rel'] = 'nofollow'; } + + return $aAttrs; } } From 9cfc5c0f5ad248a8b594f95a8bcbe5adfdbf6925 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 11:36:02 -0700 Subject: [PATCH 34/80] Fix for strip_geo's decaching; also added --all option to run over all notices by given profile to help in fixing up cache inconsistencies --- scripts/strip_geo.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/scripts/strip_geo.php b/scripts/strip_geo.php index 010fb31f54..b3f27be616 100755 --- a/scripts/strip_geo.php +++ b/scripts/strip_geo.php @@ -21,7 +21,7 @@ define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); $shortoptions = 'i::n::y'; -$longoptions = array('id=', 'nickname=', 'yes', 'dry-run'); +$longoptions = array('id=', 'nickname=', 'yes', 'dry-run', 'all'); $helptext = <<profile_id = $profile->id; -$notice->whereAdd("lat != ''"); +if (have_option('--all')) { + print "Finding all notices by $profile->nickname..."; +} else { + print "Finding notices by $profile->nickname with geolocation data..."; + $notice->whereAdd("lat != ''"); +} $notice->find(); if ($notice->N) { @@ -101,10 +107,10 @@ if ($notice->N) { $ok = $update->query($query); if ($ok) { // And now we decache him manually, as query() doesn't know what we're doing... - $orig->blow(); + $orig->decache(); echo "(removed)"; } else { - echo "(failed?)"; + echo "(unchanged?)"; } } print "\n"; From b47fc9c0bcd9f37438d2aaeb7b5bc98183b554ea Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 11:36:02 -0700 Subject: [PATCH 35/80] Fix for strip_geo's decaching; also added --all option to run over all notices by given profile to help in fixing up cache inconsistencies --- scripts/strip_geo.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/scripts/strip_geo.php b/scripts/strip_geo.php index 010fb31f54..b3f27be616 100755 --- a/scripts/strip_geo.php +++ b/scripts/strip_geo.php @@ -21,7 +21,7 @@ define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); $shortoptions = 'i::n::y'; -$longoptions = array('id=', 'nickname=', 'yes', 'dry-run'); +$longoptions = array('id=', 'nickname=', 'yes', 'dry-run', 'all'); $helptext = <<profile_id = $profile->id; -$notice->whereAdd("lat != ''"); +if (have_option('--all')) { + print "Finding all notices by $profile->nickname..."; +} else { + print "Finding notices by $profile->nickname with geolocation data..."; + $notice->whereAdd("lat != ''"); +} $notice->find(); if ($notice->N) { @@ -101,10 +107,10 @@ if ($notice->N) { $ok = $update->query($query); if ($ok) { // And now we decache him manually, as query() doesn't know what we're doing... - $orig->blow(); + $orig->decache(); echo "(removed)"; } else { - echo "(failed?)"; + echo "(unchanged?)"; } } print "\n"; From d00942cce185e24e5d67a1e2ccb92faf5be7d1d4 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 11:36:51 -0700 Subject: [PATCH 36/80] Fix for conversation check in @-reply notification email; i18n cleanup on mail messages: fixed some bad gettext usage, added trans doc comments. --- classes/Notice.php | 21 +++++++++++++++++++++ lib/mail.php | 45 +++++++++++++++++++++++++++++++-------------- lib/noticelist.php | 13 +------------ 3 files changed, 53 insertions(+), 26 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index b416e2ff28..998e9c92ba 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -699,6 +699,27 @@ class Notice extends Memcached_DataObject return $ids; } + /** + * Is this notice part of an active conversation? + * + * @return boolean true if other messages exist in the same + * conversation, false if this is the only one + */ + function hasConversation() + { + if (!empty($this->conversation)) { + $conversation = Notice::conversationStream( + $this->conversation, + 1, + 1 + ); + if ($conversation->N > 0) { + return true; + } + } + return false; + } + /** * @param $groups array of Group *objects* * @param $recipients array of profile *ids* diff --git a/lib/mail.php b/lib/mail.php index 807b6a3633..c38d9f2f50 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -170,8 +170,10 @@ function mail_to_user(&$user, $subject, $body, $headers=array(), $address=null) function mail_confirm_address($user, $code, $nickname, $address) { + // TRANS: Subject for address confirmation email $subject = _('Email address confirmation'); + // TRANS: Body for address confirmation email. $body = sprintf(_("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, ". @@ -237,11 +239,13 @@ function mail_subscribe_notify_profile($listenee, $other) $headers = _mail_prepare_headers('subscribe', $listenee->nickname, $other->nickname); $headers['From'] = mail_notify_from(); $headers['To'] = $name . ' <' . $listenee->email . '>'; + // TRANS: Subject of new-subscriber notification e-mail $headers['Subject'] = sprintf(_('%1$s is now listening to '. 'your notices on %2$s.'), $other->getBestName(), common_config('site', 'name')); + // TRANS: Main body of new-subscriber notification e-mail $body = sprintf(_('%1$s is now listening to your notices on %2$s.'."\n\n". "\t".'%3$s'."\n\n". '%4$s'. @@ -255,10 +259,13 @@ function mail_subscribe_notify_profile($listenee, $other) common_config('site', 'name'), $other->profileurl, ($other->location) ? + // TRANS: Profile info line in new-subscriber notification e-mail sprintf(_("Location: %s"), $other->location) . "\n" : '', ($other->homepage) ? + // TRANS: Profile info line in new-subscriber notification e-mail sprintf(_("Homepage: %s"), $other->homepage) . "\n" : '', ($other->bio) ? + // TRANS: Profile info line in new-subscriber notification e-mail sprintf(_("Bio: %s"), $other->bio) . "\n\n" : '', common_config('site', 'name'), common_local_url('emailsettings')); @@ -287,9 +294,11 @@ function mail_new_incoming_notify($user) $headers['From'] = $user->incomingemail; $headers['To'] = $name . ' <' . $user->email . '>'; + // TRANS: Subject of notification mail for new posting email address $headers['Subject'] = sprintf(_('New email address for posting to %s'), common_config('site', 'name')); + // TRANS: Body of notification mail for new posting email address $body = sprintf(_("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". @@ -414,6 +423,7 @@ function mail_send_sms_notice_address($notice, $smsemail, $incomingemail) $headers['From'] = ($incomingemail) ? $incomingemail : mail_notify_from(); $headers['To'] = $to; + // TRANS: Subject line for SMS-by-email notification messages $headers['Subject'] = sprintf(_('%s status'), $other->getBestName()); @@ -440,11 +450,11 @@ function mail_confirm_sms($code, $nickname, $address) $headers['From'] = mail_notify_from(); $headers['To'] = $nickname . ' <' . $address . '>'; + // TRANS: Subject line for SMS-by-email address confirmation message $headers['Subject'] = _('SMS confirmation'); - // FIXME: I18N - - $body = "$nickname: confirm you own this phone number with this code:"; + // TRANS: Main body heading for SMS-by-email address confirmation message + $body = sprintf(_("%s: confirm you own this phone number with this code:"), $nickname); $body .= "\n\n"; $body .= $code; $body .= "\n\n"; @@ -464,10 +474,12 @@ function mail_confirm_sms($code, $nickname, $address) function mail_notify_nudge($from, $to) { common_init_locale($to->language); + // TRANS: Subject for 'nudge' notification email $subject = sprintf(_('You\'ve been nudged by %s'), $from->nickname); $from_profile = $from->getProfile(); + // TRANS: Body for 'nudge' notification email $body = sprintf(_("%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". @@ -514,10 +526,12 @@ function mail_notify_message($message, $from=null, $to=null) } common_init_locale($to->language); + // TRANS: Subject for direct-message notification email $subject = sprintf(_('New private message from %s'), $from->nickname); $from_profile = $from->getProfile(); + // TRANS: Body for direct-message notification email $body = sprintf(_("%1\$s (%2\$s) sent you a private message:\n\n". "------------------------------------------------------\n". "%3\$s\n". @@ -565,8 +579,10 @@ function mail_notify_fave($other, $user, $notice) common_init_locale($other->language); + // TRANS: Subject for favorite notification email $subject = sprintf(_('%s (@%s) added your notice as a favorite'), $bestname, $user->nickname); + // TRANS: Body for favorite notification email $body = sprintf(_("%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" . @@ -622,24 +638,25 @@ function mail_notify_attn($user, $notice) common_init_locale($user->language); - if ($notice->conversation != $notice->id) { - $conversationEmailText = "The full conversation can be read here:\n\n". - "\t%5\$s\n\n "; - $conversationUrl = common_local_url('conversation', - array('id' => $notice->conversation)).'#notice-'.$notice->id; - } else { - $conversationEmailText = "%5\$s"; - $conversationUrl = null; - } + if ($notice->hasConversation()) { + $conversationUrl = common_local_url('conversation', + array('id' => $notice->conversation)).'#notice-'.$notice->id; + // TRANS: Line in @-reply notification e-mail. %s is conversation URL. + $conversationEmailText = sprintf(_("The full conversation can be read here:\n\n". + "\t%s"), $conversationUrl) . "\n\n"; + } else { + $conversationEmailText = ''; + } $subject = sprintf(_('%s (@%s) sent a notice to your attention'), $bestname, $sender->nickname); + // TRANS: Body of @-reply notification e-mail. $body = sprintf(_("%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" . - $conversationEmailText . + "%5\$s" . "You can reply back here:\n\n". "\t%6\$s\n\n" . "The list of all @-replies for you here:\n\n" . @@ -652,7 +669,7 @@ function mail_notify_attn($user, $notice) common_local_url('shownotice', array('notice' => $notice->id)),//%3 $notice->content,//%4 - $conversationUrl,//%5 + $conversationEmailText,//%5 common_local_url('newnotice', array('replyto' => $sender->nickname, 'inreplyto' => $notice->id)),//%6 common_local_url('replies', diff --git a/lib/noticelist.php b/lib/noticelist.php index 83c8de9f6e..4f997a3286 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -543,18 +543,7 @@ class NoticeListItem extends Widget function showContext() { - $hasConversation = false; - if (!empty($this->notice->conversation)) { - $conversation = Notice::conversationStream( - $this->notice->conversation, - 1, - 1 - ); - if ($conversation->N > 0) { - $hasConversation = true; - } - } - if ($hasConversation) { + if ($this->notice->hasConversation()) { $conv = Conversation::staticGet( 'id', $this->notice->conversation From 6fb60fb57f9ab604e1d77dc846eb48b978c31994 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 11:36:51 -0700 Subject: [PATCH 37/80] Fix for conversation check in @-reply notification email; i18n cleanup on mail messages: fixed some bad gettext usage, added trans doc comments. --- classes/Notice.php | 21 +++++++++++++++++++++ lib/mail.php | 45 +++++++++++++++++++++++++++++++-------------- lib/noticelist.php | 13 +------------ 3 files changed, 53 insertions(+), 26 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index b416e2ff28..998e9c92ba 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -699,6 +699,27 @@ class Notice extends Memcached_DataObject return $ids; } + /** + * Is this notice part of an active conversation? + * + * @return boolean true if other messages exist in the same + * conversation, false if this is the only one + */ + function hasConversation() + { + if (!empty($this->conversation)) { + $conversation = Notice::conversationStream( + $this->conversation, + 1, + 1 + ); + if ($conversation->N > 0) { + return true; + } + } + return false; + } + /** * @param $groups array of Group *objects* * @param $recipients array of profile *ids* diff --git a/lib/mail.php b/lib/mail.php index 807b6a3633..c38d9f2f50 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -170,8 +170,10 @@ function mail_to_user(&$user, $subject, $body, $headers=array(), $address=null) function mail_confirm_address($user, $code, $nickname, $address) { + // TRANS: Subject for address confirmation email $subject = _('Email address confirmation'); + // TRANS: Body for address confirmation email. $body = sprintf(_("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, ". @@ -237,11 +239,13 @@ function mail_subscribe_notify_profile($listenee, $other) $headers = _mail_prepare_headers('subscribe', $listenee->nickname, $other->nickname); $headers['From'] = mail_notify_from(); $headers['To'] = $name . ' <' . $listenee->email . '>'; + // TRANS: Subject of new-subscriber notification e-mail $headers['Subject'] = sprintf(_('%1$s is now listening to '. 'your notices on %2$s.'), $other->getBestName(), common_config('site', 'name')); + // TRANS: Main body of new-subscriber notification e-mail $body = sprintf(_('%1$s is now listening to your notices on %2$s.'."\n\n". "\t".'%3$s'."\n\n". '%4$s'. @@ -255,10 +259,13 @@ function mail_subscribe_notify_profile($listenee, $other) common_config('site', 'name'), $other->profileurl, ($other->location) ? + // TRANS: Profile info line in new-subscriber notification e-mail sprintf(_("Location: %s"), $other->location) . "\n" : '', ($other->homepage) ? + // TRANS: Profile info line in new-subscriber notification e-mail sprintf(_("Homepage: %s"), $other->homepage) . "\n" : '', ($other->bio) ? + // TRANS: Profile info line in new-subscriber notification e-mail sprintf(_("Bio: %s"), $other->bio) . "\n\n" : '', common_config('site', 'name'), common_local_url('emailsettings')); @@ -287,9 +294,11 @@ function mail_new_incoming_notify($user) $headers['From'] = $user->incomingemail; $headers['To'] = $name . ' <' . $user->email . '>'; + // TRANS: Subject of notification mail for new posting email address $headers['Subject'] = sprintf(_('New email address for posting to %s'), common_config('site', 'name')); + // TRANS: Body of notification mail for new posting email address $body = sprintf(_("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". @@ -414,6 +423,7 @@ function mail_send_sms_notice_address($notice, $smsemail, $incomingemail) $headers['From'] = ($incomingemail) ? $incomingemail : mail_notify_from(); $headers['To'] = $to; + // TRANS: Subject line for SMS-by-email notification messages $headers['Subject'] = sprintf(_('%s status'), $other->getBestName()); @@ -440,11 +450,11 @@ function mail_confirm_sms($code, $nickname, $address) $headers['From'] = mail_notify_from(); $headers['To'] = $nickname . ' <' . $address . '>'; + // TRANS: Subject line for SMS-by-email address confirmation message $headers['Subject'] = _('SMS confirmation'); - // FIXME: I18N - - $body = "$nickname: confirm you own this phone number with this code:"; + // TRANS: Main body heading for SMS-by-email address confirmation message + $body = sprintf(_("%s: confirm you own this phone number with this code:"), $nickname); $body .= "\n\n"; $body .= $code; $body .= "\n\n"; @@ -464,10 +474,12 @@ function mail_confirm_sms($code, $nickname, $address) function mail_notify_nudge($from, $to) { common_init_locale($to->language); + // TRANS: Subject for 'nudge' notification email $subject = sprintf(_('You\'ve been nudged by %s'), $from->nickname); $from_profile = $from->getProfile(); + // TRANS: Body for 'nudge' notification email $body = sprintf(_("%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". @@ -514,10 +526,12 @@ function mail_notify_message($message, $from=null, $to=null) } common_init_locale($to->language); + // TRANS: Subject for direct-message notification email $subject = sprintf(_('New private message from %s'), $from->nickname); $from_profile = $from->getProfile(); + // TRANS: Body for direct-message notification email $body = sprintf(_("%1\$s (%2\$s) sent you a private message:\n\n". "------------------------------------------------------\n". "%3\$s\n". @@ -565,8 +579,10 @@ function mail_notify_fave($other, $user, $notice) common_init_locale($other->language); + // TRANS: Subject for favorite notification email $subject = sprintf(_('%s (@%s) added your notice as a favorite'), $bestname, $user->nickname); + // TRANS: Body for favorite notification email $body = sprintf(_("%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" . @@ -622,24 +638,25 @@ function mail_notify_attn($user, $notice) common_init_locale($user->language); - if ($notice->conversation != $notice->id) { - $conversationEmailText = "The full conversation can be read here:\n\n". - "\t%5\$s\n\n "; - $conversationUrl = common_local_url('conversation', - array('id' => $notice->conversation)).'#notice-'.$notice->id; - } else { - $conversationEmailText = "%5\$s"; - $conversationUrl = null; - } + if ($notice->hasConversation()) { + $conversationUrl = common_local_url('conversation', + array('id' => $notice->conversation)).'#notice-'.$notice->id; + // TRANS: Line in @-reply notification e-mail. %s is conversation URL. + $conversationEmailText = sprintf(_("The full conversation can be read here:\n\n". + "\t%s"), $conversationUrl) . "\n\n"; + } else { + $conversationEmailText = ''; + } $subject = sprintf(_('%s (@%s) sent a notice to your attention'), $bestname, $sender->nickname); + // TRANS: Body of @-reply notification e-mail. $body = sprintf(_("%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" . - $conversationEmailText . + "%5\$s" . "You can reply back here:\n\n". "\t%6\$s\n\n" . "The list of all @-replies for you here:\n\n" . @@ -652,7 +669,7 @@ function mail_notify_attn($user, $notice) common_local_url('shownotice', array('notice' => $notice->id)),//%3 $notice->content,//%4 - $conversationUrl,//%5 + $conversationEmailText,//%5 common_local_url('newnotice', array('replyto' => $sender->nickname, 'inreplyto' => $notice->id)),//%6 common_local_url('replies', diff --git a/lib/noticelist.php b/lib/noticelist.php index 83c8de9f6e..4f997a3286 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -543,18 +543,7 @@ class NoticeListItem extends Widget function showContext() { - $hasConversation = false; - if (!empty($this->notice->conversation)) { - $conversation = Notice::conversationStream( - $this->notice->conversation, - 1, - 1 - ); - if ($conversation->N > 0) { - $hasConversation = true; - } - } - if ($hasConversation) { + if ($this->notice->hasConversation()) { $conv = Conversation::staticGet( 'id', $this->notice->conversation From 85fb32a3595cd7cdd7d5e58cedaaac2ef5180472 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 14:02:01 -0700 Subject: [PATCH 38/80] Ticket #946: annotate use of singular 'them' in invite mail messages to aid translators --- actions/invite.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/actions/invite.php b/actions/invite.php index 54b2de62ac..f17c910b66 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -224,8 +224,10 @@ class InviteAction extends CurrentUserDesignAction $headers['From'] = mail_notify_from(); $headers['To'] = trim($email); + // TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. $headers['Subject'] = sprintf(_('%1$s has invited you to join them on %2$s'), $bestname, $sitename); + // TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. $body = sprintf(_("%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. ". From 9bc1a22fa93760c6eae4a4fa6797e9ea72f7ada1 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 9 Apr 2010 23:30:08 +0200 Subject: [PATCH 39/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/af/LC_MESSAGES/statusnet.po | 240 ++++++++++------- locale/ar/LC_MESSAGES/statusnet.po | 228 +++++++++------- locale/arz/LC_MESSAGES/statusnet.po | 228 +++++++++------- locale/bg/LC_MESSAGES/statusnet.po | 232 +++++++++------- locale/br/LC_MESSAGES/statusnet.po | 230 +++++++++------- locale/ca/LC_MESSAGES/statusnet.po | 233 +++++++++------- locale/cs/LC_MESSAGES/statusnet.po | 232 +++++++++------- locale/de/LC_MESSAGES/statusnet.po | 243 +++++++++-------- locale/el/LC_MESSAGES/statusnet.po | 230 +++++++++------- locale/en_GB/LC_MESSAGES/statusnet.po | 228 +++++++++------- locale/es/LC_MESSAGES/statusnet.po | 230 +++++++++------- locale/fa/LC_MESSAGES/statusnet.po | 262 ++++++++++-------- locale/fi/LC_MESSAGES/statusnet.po | 236 ++++++++++------- locale/fr/LC_MESSAGES/statusnet.po | 240 +++++++++-------- locale/ga/LC_MESSAGES/statusnet.po | 232 +++++++++------- locale/gl/LC_MESSAGES/statusnet.po | 367 +++++++++++++++----------- locale/he/LC_MESSAGES/statusnet.po | 231 +++++++++------- locale/hsb/LC_MESSAGES/statusnet.po | 230 +++++++++------- locale/ia/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/is/LC_MESSAGES/statusnet.po | 231 +++++++++------- locale/it/LC_MESSAGES/statusnet.po | 240 +++++++++-------- locale/ja/LC_MESSAGES/statusnet.po | 240 +++++++++-------- locale/ko/LC_MESSAGES/statusnet.po | 233 +++++++++------- locale/mk/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/nb/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/nl/LC_MESSAGES/statusnet.po | 240 +++++++++-------- locale/nn/LC_MESSAGES/statusnet.po | 233 +++++++++------- locale/pl/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/pt/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/pt_BR/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/ru/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/statusnet.pot | 222 +++++++++------- locale/sv/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/te/LC_MESSAGES/statusnet.po | 244 +++++++++-------- locale/tr/LC_MESSAGES/statusnet.po | 232 +++++++++------- locale/uk/LC_MESSAGES/statusnet.po | 241 +++++++++-------- locale/vi/LC_MESSAGES/statusnet.po | 232 +++++++++------- locale/zh_CN/LC_MESSAGES/statusnet.po | 233 +++++++++------- locale/zh_TW/LC_MESSAGES/statusnet.po | 230 +++++++++------- 39 files changed, 5429 insertions(+), 3902 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 361118c626..1b328e6f39 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:04+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:32+0000\n" "Language-Team: Afrikaans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: out-statusnet\n" @@ -750,7 +750,7 @@ msgid "Preview" msgstr "Voorskou" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Skrap" @@ -790,7 +790,7 @@ msgstr "Die avatar is verwyder." msgid "You already blocked that user." msgstr "U het reeds die gebruiker geblokkeer." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Blokkeer gebruiker" @@ -803,7 +803,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Nee" @@ -813,11 +813,11 @@ msgstr "Moenie hierdie gebruiker blokkeer nie" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkeer hierdie gebruiker" @@ -865,8 +865,10 @@ msgstr "Deblokkeer" msgid "Unblock this user" msgstr "Deblokkeer hierdie gebruiker" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Stuur aan " #: actions/confirmaddress.php:75 @@ -936,7 +938,7 @@ msgstr "U is nie die eienaar van hierdie applikasie nie." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -972,7 +974,7 @@ msgstr "Nie aangeteken nie." #: actions/deletenotice.php:71 msgid "Can't delete this notice." -msgstr "" +msgstr "Hierdie kennisgewing kan nie verwyder word nie." #: actions/deletenotice.php:103 msgid "" @@ -992,9 +994,9 @@ msgstr "Is u seker u wil hierdie kennisgewing verwyder?" msgid "Do not delete this notice" msgstr "Moenie hierdie kennisgewing verwyder nie" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" -msgstr "" +msgstr "Verwyder hierdie kennisgewing" #: actions/deleteuser.php:67 msgid "You cannot delete users." @@ -1391,7 +1393,7 @@ msgstr "" #: actions/emailsettings.php:383 actions/imsettings.php:355 msgid "That is the wrong IM address." -msgstr "" +msgstr "Dit is die verkeerde IM-adres." #: actions/emailsettings.php:395 actions/imsettings.php:367 #: actions/smssettings.php:386 @@ -1418,7 +1420,7 @@ msgstr "Kon nie gebruikersdata opdateer nie." #: actions/emailsettings.php:459 actions/smssettings.php:531 msgid "Incoming email address removed." -msgstr "" +msgstr "Inkomende e-posadres is verwyder." #: actions/emailsettings.php:481 actions/smssettings.php:555 msgid "New incoming email address added." @@ -1467,7 +1469,7 @@ msgstr "" #: lib/personalgroupnav.php:115 #, php-format msgid "%s's favorite notices" -msgstr "" +msgstr "%s se gunsteling kennisgewings" #: actions/favoritesrss.php:115 #, php-format @@ -1590,11 +1592,11 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Blok gebruiker toegang tot die groep" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1602,15 +1604,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Blok hierdie gebruiker van hierdie groep" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1685,19 +1687,19 @@ msgstr "" msgid "Admin" msgstr "Administrateur" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blokkeer" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Maak Admin" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Maak hierdie gebruiker 'n administrateur" @@ -1949,12 +1951,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Stuur" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2254,15 +2258,19 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "Status van %1$s op %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, php-format +msgid "content type %s not supported" msgstr "" -#: actions/oembed.php:160 -msgid "Only " -msgstr "Slegs " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -2941,7 +2949,7 @@ msgstr "" msgid "Registration successful" msgstr "Die registrasie is voltooi" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registreer" @@ -2993,20 +3001,13 @@ 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 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3025,7 +3026,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3100,7 +3101,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Herhalend" @@ -4342,11 +4343,11 @@ msgstr "" msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4638,23 +4639,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Alle " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "Lisensie." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Na" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Voor" @@ -4942,12 +4941,14 @@ msgstr "" msgid "Fullname: %s" msgstr "Volle naam: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Ligging: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Tuisblad: %s" @@ -5386,11 +5387,13 @@ msgstr "" msgid "Sign up for a new account" msgstr "" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5407,12 +5410,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5427,17 +5432,20 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Beskrywing: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5450,21 +5458,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS-bevestiging" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5480,12 +5498,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nuwe privaat boodskap vanaf %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5504,12 +5524,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5530,12 +5552,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5548,6 +5580,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5710,23 +5754,23 @@ msgstr "W" msgid "at" msgstr "op" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "in konteks" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Herhaal deur" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Antwoord" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "" @@ -5832,11 +5876,7 @@ msgstr "Daaglikse gemiddelde" msgid "All groups" msgstr "Alle groepe" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -5860,6 +5900,10 @@ msgstr "Uitgelig" msgid "Popular" msgstr "Gewild" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "" + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "" @@ -6050,47 +6094,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "'n paar sekondes gelede" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "ongeveer 'n minuut gelede" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minute gelede" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "ongeveer 'n uur gelede" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur gelede" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "ongeveer een dag gelede" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dae gelede" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "ongeveer een maand gelede" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maande gelede" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "ongeveer een jaar gelede" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 5588b8ad3d..bcf833a424 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-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:08+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:35+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -746,7 +746,7 @@ msgid "Preview" msgstr "معاينة" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "احذف" @@ -786,7 +786,7 @@ msgstr "حُذف الأفتار." msgid "You already blocked that user." msgstr "لقد منعت مسبقا هذا المستخدم." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "امنع المستخدم" @@ -799,7 +799,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "لا" @@ -809,11 +809,11 @@ msgstr "لا تمنع هذا المستخدم" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -861,9 +861,11 @@ msgstr "ألغِ المنع" msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "مجموعات %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -932,7 +934,7 @@ msgstr "أنت لست مالك هذا التطبيق." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -988,7 +990,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1589,11 +1591,11 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا في المجموعة." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1601,15 +1603,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "لا تمنع هذا المستخدم من هذه المجموعة" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "امنع هذا المستخدم من هذه المجموعة" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "خطأ في قاعدة البيانات أثناء منع المستخدم من المجموعة." @@ -1684,19 +1686,19 @@ msgstr "قائمة بمستخدمي هذه المجموعة." msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "اجعل المستخدم إداريًا في المجموعة" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" @@ -1954,12 +1956,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "أرسل" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2263,15 +2267,19 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "حالة %1$s في يوم %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "نوع المحتوى " -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -2959,7 +2967,7 @@ msgstr "عذرا، رمز دعوة غير صالح." msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "سجّل" @@ -3011,20 +3019,13 @@ 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 "المشاع المبدع نسبة المنصف إلى مؤلفه 3.0" - -#: actions/register.php:497 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3043,7 +3044,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3118,7 +3119,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية." msgid "You already repeated that notice." msgstr "أنت كررت هذه الملاحظة بالفعل." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "مكرر" @@ -4389,12 +4390,12 @@ msgstr "" msgid "Problem saving notice." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" @@ -4695,23 +4696,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "الرخصة." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "بعد" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "قبل" @@ -5003,12 +5002,14 @@ msgstr "%s ترك المجموعة %s" msgid "Fullname: %s" msgstr "الاسم الكامل: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "الموقع: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "الصفحة الرئيسية: %s" @@ -5497,11 +5498,13 @@ msgstr "لُج باسم مستخدم وكلمة سر" msgid "Sign up for a new account" msgstr "سجّل حسابًا جديدًا" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "تأكيد عنوان البريد الإلكتروني" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5530,12 +5533,14 @@ msgstr "" "شكرًا على الوقت الذي أمضيته، \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5560,17 +5565,20 @@ msgstr "" "----\n" "غيّر خيارات البريد الإلكتروني والإشعار في %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "السيرة: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "عنوان بريد إلكتروني جديد للإرسال إلى %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5583,21 +5591,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "حالة %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "تأكيد الرسالة القصيرة" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "لقد نبهك %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5613,12 +5631,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "رسالة خاصة جديدة من %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5637,12 +5657,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5663,12 +5685,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "لقد أرسل %s (@%s) إشعارًا إليك" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5681,6 +5713,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5843,23 +5887,23 @@ msgstr "غ" msgid "at" msgstr "في" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "في السياق" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "مكرر بواسطة" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -5965,11 +6009,7 @@ msgstr "المُعدّل اليومي" msgid "All groups" msgstr "كل المجموعات" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "لا مدخلات رجوع إلى." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -5993,6 +6033,10 @@ msgstr "مُختارون" msgid "Popular" msgstr "محبوبة" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "لا مدخلات رجوع إلى." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "أأكرّر هذا الإشعار؟ّ" @@ -6184,47 +6228,47 @@ msgctxt "role" msgid "Moderator" msgstr "مراقب" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "قبل سنة تقريبًا" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index e327309d7a..8116964895 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-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:11+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:39+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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -752,7 +752,7 @@ msgid "Preview" msgstr "عاين" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "احذف" @@ -793,7 +793,7 @@ msgstr "حُذف الأفتار." msgid "You already blocked that user." msgstr "لقد منعت مسبقا هذا المستخدم." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "امنع المستخدم" @@ -806,7 +806,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "لا" @@ -816,11 +816,11 @@ msgstr "لا تمنع هذا المستخدم" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -868,9 +868,11 @@ msgstr "ألغِ المنع" msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "مجموعات %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -941,7 +943,7 @@ msgstr "انت مش بتملك الapplication دى." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1000,7 +1002,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1602,11 +1604,11 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا فى المجموعه." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1614,15 +1616,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "لا تمنع هذا المستخدم من هذه المجموعة" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "امنع هذا المستخدم من هذه المجموعة" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "خطأ فى قاعده البيانات أثناء منع المستخدم من المجموعه." @@ -1697,19 +1699,19 @@ msgstr "قائمه بمستخدمى هذه المجموعه." msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" @@ -1962,12 +1964,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "أرسل" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2269,15 +2273,19 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "نوع المحتوى " -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr " مش نظام بيانات مدعوم." @@ -2962,7 +2970,7 @@ msgstr "عذرا، رمز دعوه غير صالح." msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "سجّل" @@ -3014,20 +3022,13 @@ 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 "المشاع المبدع نسبه المنصف إلى مؤلفه 3.0" - -#: actions/register.php:497 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3046,7 +3047,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3121,7 +3122,7 @@ msgstr "ما ينفعش تكرر الملاحظه بتاعتك." msgid "You already repeated that notice." msgstr "انت عيدت الملاحظه دى فعلا." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "مكرر" @@ -4384,12 +4385,12 @@ msgstr "" msgid "Problem saving notice." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" @@ -4706,23 +4707,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "الرخصه." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "بعد" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "قبل" @@ -5020,12 +5019,14 @@ msgstr "%s ساب الجروپ %s" msgid "Fullname: %s" msgstr "الاسم الكامل: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "الموقع: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "الصفحه الرئيسية: %s" @@ -5476,11 +5477,13 @@ msgstr "" msgid "Sign up for a new account" msgstr "" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "تأكيد عنوان البريد الإلكتروني" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5497,12 +5500,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5517,17 +5522,20 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "عن نفسك: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5540,21 +5548,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "حاله %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5570,12 +5588,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "رساله خاصه جديده من %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5594,12 +5614,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5620,12 +5642,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5638,6 +5670,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5801,23 +5845,23 @@ msgstr "غ" msgid "at" msgstr "في" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "فى السياق" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "متكرر من" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -5923,11 +5967,7 @@ msgstr "" msgid "All groups" msgstr "كل المجموعات" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "لا مدخلات رجوع إلى." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -5951,6 +5991,10 @@ msgstr "مُختارون" msgid "Popular" msgstr "مشهورة" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "لا مدخلات رجوع إلى." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "كرر هذا الإشعار؟" @@ -6143,47 +6187,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "قبل سنه تقريبًا" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index eea55216a8..9480e8d6da 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:14+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:42+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -756,7 +756,7 @@ msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Изтриване" @@ -796,7 +796,7 @@ msgstr "Аватарът е изтрит." msgid "You already blocked that user." msgstr "Вече сте блокирали този потребител." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Блокиране на потребителя" @@ -809,7 +809,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Не" @@ -819,11 +819,11 @@ msgstr "Да не се блокира този потребител" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -872,9 +872,10 @@ msgstr "Разблокиране" msgid "Unblock this user" msgstr "Разблокиране на този потребител" -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Снимка" #: actions/confirmaddress.php:75 @@ -947,7 +948,7 @@ msgstr "Не членувате в тази група." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -1006,7 +1007,7 @@ msgstr "Наистина ли искате да изтриете тази бел msgid "Do not delete this notice" msgstr "Да не се изтрива бележката" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -1631,12 +1632,12 @@ msgstr "Потребителят вече е блокиран за групат msgid "User is not a member of group." msgstr "Потребителят не членува в групата." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "Блокиране на потребителя" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1644,17 +1645,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "Списък с потребителите в тази група." -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "Списък с потребителите в тази група." -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1734,20 +1735,20 @@ msgstr "Списък с потребителите в тази група." msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Блокиране" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 #, fuzzy msgid "Make user an admin of the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2019,12 +2020,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Прати" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s ви кани да ползвате заедно %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2366,15 +2369,19 @@ msgstr "Бележката няма профил" msgid "%1$s's status on %2$s" msgstr "Бележка на %1$s от %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "вид съдържание " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Само " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" @@ -3069,7 +3076,7 @@ msgstr "Грешка в кода за потвърждение." msgid "Registration successful" msgstr "Записването е успешно." -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистриране" @@ -3123,21 +3130,13 @@ 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 "Криейтив Комънс Признание 3.0" - -#: actions/register.php:497 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3170,7 +3169,7 @@ msgstr "" "Благодарим, че се включихте в сайта и дано ползването на услугата ви носи " "само приятни мигове!" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3253,7 +3252,7 @@ msgstr "Не можете да повтаряте собствена бележ msgid "You already repeated that notice." msgstr "Вече сте повторили тази бележка." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Повторено" @@ -4558,12 +4557,12 @@ msgstr "Забранено ви е да публикувате бележки в msgid "Problem saving notice." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4881,23 +4880,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Всички " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "лиценз." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Страниране" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "След" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Преди" @@ -5206,12 +5203,14 @@ msgstr "%s напусна групата %s" msgid "Fullname: %s" msgstr "Пълно име: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Местоположение: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" @@ -5660,11 +5659,13 @@ msgstr "Вход с име и парола" msgid "Sign up for a new account" msgstr "Създаване на нова сметка" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Потвърждаване адреса на е-поща" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5681,12 +5682,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s вече получава бележките ви в %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5711,17 +5714,20 @@ msgstr "" "----\n" "Може да смените адреса и настройките за уведомяване по е-поща на %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Биография: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Нов адрес на е-поща за публикщуване в %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5734,21 +5740,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Състояние на %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Потвърждение за SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Очаква се потвърждение за този телефонен номер." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Побутнати сте от %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5764,12 +5780,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Ново лично съобщение от %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5788,12 +5806,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) отбеляза бележката ви като любима" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5814,12 +5834,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5832,6 +5862,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5998,23 +6040,23 @@ msgstr "З" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "в контекст" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Повторено от" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Бележката е повторена." @@ -6123,11 +6165,7 @@ msgstr "" msgid "All groups" msgstr "Всички групи" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Липсват аргументи return-to." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6151,6 +6189,10 @@ msgstr "Избрано" msgid "Popular" msgstr "Популярно" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Липсват аргументи return-to." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6348,47 +6390,47 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "преди няколко секунди" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "преди около минута" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "преди около %d минути" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "преди около час" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "преди около %d часа" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "преди около ден" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "преди около %d дни" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "преди около месец" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "преди около %d месеца" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "преди около година" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index f635197145..69c672558b 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:17+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:45+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -745,7 +745,7 @@ msgid "Preview" msgstr "Rakwelet" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Diverkañ" @@ -785,7 +785,7 @@ msgstr "Dilammet eo bet an Avatar." 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 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Stankañ an implijer-mañ" @@ -798,7 +798,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Ket" @@ -808,11 +808,11 @@ 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 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Ya" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Stankañ an implijer-mañ" @@ -861,8 +861,10 @@ msgstr "Distankañ" msgid "Unblock this user" msgstr "Distankañ an implijer-mañ" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Postañ war " #: actions/confirmaddress.php:75 @@ -932,7 +934,7 @@ 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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -988,7 +990,7 @@ msgstr "Ha sur oc'h ho peus c'hoant dilemel an ali-mañ ?" msgid "Do not delete this notice" msgstr "Arabat dilemel an ali-mañ" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Dilemel an ali-mañ" @@ -1586,11 +1588,11 @@ msgstr "An implijer-mañ a zo stanket dija eus ar strollad." 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:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Stankañ an implijer-mañ eus ar strollad" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1598,15 +1600,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Arabat stankañ an implijer-mañ eus ar strollad." -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Stankañ an implijer-mañ eus ar strollad-se" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1681,19 +1683,19 @@ msgstr "Roll an implijerien enrollet er strollad-mañ." msgid "Admin" msgstr "Merañ" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Stankañ" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Lakaat ur merour" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Lakaat an implijer-mañ da verour" @@ -1949,12 +1951,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Kas" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, 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 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2264,15 +2268,19 @@ msgstr "N'en deus ket an ali a profil" msgid "%1$s's status on %2$s" msgstr "Statud %1$s war %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "seurt an danvez " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Hepken " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -2951,7 +2959,7 @@ msgstr "Digarezit, kod pedadenn direizh." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Krouiñ ur gont" @@ -3003,20 +3011,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Anv hiroc'h, ho anv \"gwir\" a zo gwelloc'h" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "" - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Deroadenn 3.0" - -#: actions/register.php:497 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3035,7 +3036,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3110,7 +3111,7 @@ msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." msgid "You already repeated that notice." msgstr "Adkemeret o peus dija an ali-mañ." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Adlavaret" @@ -4358,11 +4359,11 @@ msgstr "" msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4655,23 +4656,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Pep tra " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "aotre implijout." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Pajennadur" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "War-lerc'h" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Kent" @@ -4959,12 +4958,14 @@ msgstr "%s {{Gender:.|en|he}} deus kuitaet ar strollad %s" msgid "Fullname: %s" msgstr "Anv klok : %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Lec'hiadur : %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Lec'hienn Web : %s" @@ -5406,11 +5407,13 @@ msgstr "" msgid "Sign up for a new account" msgstr "Digeriñ ur gont nevez" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5427,12 +5430,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5447,17 +5452,20 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5470,21 +5478,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Statud %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5500,12 +5518,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Kemenadenn personel nevez a-berzh %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5524,12 +5544,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5550,12 +5572,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5568,6 +5600,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5730,23 +5774,23 @@ msgstr "K" msgid "at" msgstr "e" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "en amdro" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Adkemeret gant" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Respont d'an ali-mañ" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Respont" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Ali adkemeret" @@ -5852,11 +5896,7 @@ msgstr "Keidenn pemdeziek" msgid "All groups" msgstr "An holl strolladoù" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -5880,6 +5920,10 @@ msgstr "" msgid "Popular" msgstr "Poblek" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "" + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Adkregiñ gant an ali-mañ ?" @@ -6071,47 +6115,47 @@ msgctxt "role" msgid "Moderator" msgstr "Habasker" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "un nebeud eilennoù zo" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "1 vunutenn zo well-wazh" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "%d munutenn zo well-wazh" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "1 eurvezh zo well-wazh" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "%d eurvezh zo well-wazh" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "1 devezh zo well-wazh" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "%d devezh zo well-wazh" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "miz zo well-wazh" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "%d miz zo well-wazh" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "bloaz zo well-wazh" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index bf6bd9175d..296011994d 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:21+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:48+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -779,7 +779,7 @@ msgid "Preview" msgstr "Vista prèvia" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Suprimeix" @@ -822,7 +822,7 @@ msgstr "S'ha suprimit l'avatar." msgid "You already blocked that user." msgstr "Ja heu blocat l'usuari." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Usuari bloquejat." @@ -835,7 +835,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "No" @@ -845,11 +845,11 @@ msgstr "No bloquis l'usuari" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquejar aquest usuari" @@ -898,8 +898,10 @@ msgstr "Desbloca" msgid "Unblock this user" msgstr "Desbloca l'usuari" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Envia a " #: actions/confirmaddress.php:75 @@ -973,7 +975,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." @@ -1036,7 +1038,7 @@ msgstr "N'estàs segur que vols eliminar aquesta notificació?" msgid "Do not delete this notice" msgstr "No es pot esborrar la notificació." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Eliminar aquesta nota" @@ -1665,11 +1667,11 @@ msgstr "Un usuari t'ha bloquejat." msgid "User is not a member of group." msgstr "L'usuari no és membre del grup." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Bloca l'usuari del grup" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, fuzzy, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1679,15 +1681,15 @@ msgstr "" "Esteu segur que voleu blocar l'usuari «%s» del grup «%s»? Se suprimiran del " "grup, i no podran enviar-hi res ni subscriure-s'hi en el futur." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "No bloquis l'usuari del grup" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Bloca l'usuari del grup" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "S'ha produït un error en la base de dades en blocar l'usuari del grup." @@ -1766,19 +1768,19 @@ msgstr "La llista dels usuaris d'aquest grup." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Bloca" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Fes l'usuari un administrador del grup" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Fes-lo administrador" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Fes l'usuari administrador" @@ -2054,12 +2056,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Envia" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, fuzzy, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s t'ha convidat us ha convidat a unir-te al grup %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2404,15 +2408,19 @@ msgstr "Avís sense perfil" msgid "%1$s's status on %2$s" msgstr "estat de %1$s a %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "tipus de contingut " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Només " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -3122,7 +3130,7 @@ msgstr "El codi d'invitació no és vàlid." msgid "Registration successful" msgstr "Registre satisfactori" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registre" @@ -3178,23 +3186,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nom llarg, preferiblement el teu nom \"real\"" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "El meu text i els meus fitxers estan disponibles sota " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Atribució 3.0" - -#: actions/register.php:497 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" "excepte les següents dades privades: contrasenya, adreça de correu " "electrònic, adreça de missatgeria instantània, número de telèfon." -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3225,7 +3225,7 @@ msgstr "" "\n" "Gràcies per registrar-te i esperem que gaudeixis d'aquest servei." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3313,7 +3313,7 @@ msgstr "No pots registrar-te si no estàs d'acord amb la llicència." msgid "You already repeated that notice." msgstr "Ja heu blocat l'usuari." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Repetit" @@ -4638,12 +4638,12 @@ msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." msgid "Problem saving notice." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4963,23 +4963,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Tot " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "llicència." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Paginació" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Posteriors" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Anteriors" @@ -5285,12 +5283,14 @@ msgstr "%s ha abandonat el grup %s" msgid "Fullname: %s" msgstr "Nom complet: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Localització: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Pàgina web: %s" @@ -5738,11 +5738,13 @@ msgstr "Accedir amb el nom d'usuari i contrasenya" msgid "Sign up for a new account" msgstr "Crear nou compte" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Confirmació de l'adreça de correu electrònic" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5759,12 +5761,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ara està escoltant els teus avisos a %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5785,19 +5789,22 @@ msgstr "" "Atentament,\n" "%4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nou correu electrònic per publicar a %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5818,21 +5825,31 @@ msgstr "" "Sincerament teus,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s estat" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Confirmació SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Esperant confirmació per aquest número de telèfon." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Has estat reclamat per %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5848,12 +5865,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nou missatge privat de %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5872,12 +5891,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s ha afegit la teva nota com a favorita" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5898,12 +5919,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5916,6 +5947,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6083,23 +6126,23 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "en context" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Repetit per" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "respondre a aquesta nota" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Respon" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Notificació publicada" @@ -6208,12 +6251,7 @@ msgstr "" msgid "All groups" msgstr "Tots els grups" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "No argument de la id." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Mètode no implementat" @@ -6237,6 +6275,11 @@ msgstr "Destacat" msgid "Popular" msgstr "Popular" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "No argument de la id." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6434,47 +6477,47 @@ msgctxt "role" msgid "Moderator" msgstr "Modera" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "fa pocs segons" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "fa un minut" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "fa %d minuts" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "fa una hora" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "fa %d hores" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "fa un dia" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "fa %d dies" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "fa un mes" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "fa %d mesos" -#: lib/util.php:1064 +#: lib/util.php:1071 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 f61ff5cc89..00ed134a50 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:24+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:52+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -777,7 +777,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Odstranit" @@ -819,7 +819,7 @@ msgstr "Avatar smazán." msgid "You already blocked that user." msgstr "Již jste přihlášen" -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 #, fuzzy msgid "Block user" msgstr "Žádný takový uživatel." @@ -833,7 +833,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Ne" @@ -844,11 +844,11 @@ msgstr "Žádný takový uživatel." #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Ano" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -899,9 +899,11 @@ msgstr "" msgid "Unblock this user" msgstr "Žádný takový uživatel." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "Odpovědi na %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -975,7 +977,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1035,7 +1037,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "Žádné takové oznámení." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -1669,12 +1671,12 @@ msgstr "Uživatel nemá profil." msgid "User is not a member of group." msgstr "Neodeslal jste nám profil" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "Žádný takový uživatel." -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1682,17 +1684,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "Nelze přesměrovat na server: %s" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "Žádný takový uživatel." -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1773,19 +1775,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2056,12 +2058,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Odeslat" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2373,16 +2377,19 @@ msgstr "Sdělení nemá profil" msgid "%1$s's status on %2$s" msgstr "%1 statusů na %2" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "Připojit" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -3094,7 +3101,7 @@ msgstr "Chyba v ověřovacím kódu" msgid "Registration successful" msgstr "Registrace úspěšná" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrovat" @@ -3146,23 +3153,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Mé texty a soubory jsou k dispozici pod" - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:497 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " "číslo." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3181,7 +3180,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3265,7 +3264,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." msgid "You already repeated that notice." msgstr "Již jste přihlášen" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "Vytvořit" @@ -4577,12 +4576,12 @@ msgstr "" msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4905,24 +4904,22 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 #, fuzzy msgid "After" msgstr "« Novější" -#: lib/action.php:1171 +#: lib/action.php:1173 #, fuzzy msgid "Before" msgstr "Starší »" @@ -5231,12 +5228,14 @@ msgstr "%1 statusů na %2" msgid "Fullname: %s" msgstr "Celé jméno" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" @@ -5699,11 +5698,13 @@ msgstr "Neplatné jméno nebo heslo" msgid "Sign up for a new account" msgstr "Vytvořit nový účet" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Potvrzení emailové adresy" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5720,12 +5721,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5746,17 +5749,20 @@ msgstr "" "S úctou váš,\n" "%4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "O mě" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5769,21 +5775,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5799,12 +5815,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5823,12 +5841,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5849,12 +5869,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5867,6 +5897,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6036,26 +6078,26 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "Žádný obsah!" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "Vytvořit" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 #, fuzzy msgid "Reply" msgstr "odpověď" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Sdělení" @@ -6163,12 +6205,7 @@ msgstr "" msgid "All groups" msgstr "" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "Žádný takový dokument." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6193,6 +6230,11 @@ msgstr "" msgid "Popular" msgstr "Hledání lidí" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "Žádný takový dokument." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6394,47 +6436,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "před pár sekundami" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "asi před minutou" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "asi před %d minutami" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "asi před hodinou" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "asi před %d hodinami" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "asi přede dnem" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "před %d dny" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "asi před měsícem" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "asi před %d mesíci" -#: lib/util.php:1064 +#: lib/util.php:1071 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 17c12aa108..babee17fd3 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:27+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:55+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -776,7 +776,7 @@ msgid "Preview" msgstr "Vorschau" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Löschen" @@ -817,7 +817,7 @@ msgstr "Avatar gelöscht." msgid "You already blocked that user." msgstr "Du hast diesen Benutzer bereits blockiert." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Benutzer blockieren" @@ -833,7 +833,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Nein" @@ -843,11 +843,11 @@ msgstr "Diesen Benutzer freigeben" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -895,8 +895,10 @@ msgstr "Freigeben" msgid "Unblock this user" msgstr "Diesen Benutzer freigeben" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Versenden an " #: actions/confirmaddress.php:75 @@ -966,7 +968,7 @@ msgstr "Du bist Besitzer dieses Programms" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1026,7 +1028,7 @@ msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" msgid "Do not delete this notice" msgstr "Diese Nachricht nicht löschen" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Nachricht löschen" @@ -1644,11 +1646,11 @@ msgstr "Dieser Nutzer ist bereits von der Gruppe gesperrt" msgid "User is not a member of group." msgstr "Nutzer ist kein Mitglied dieser Gruppe." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Benutzerzugang zu der Gruppe blockieren" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1660,15 +1662,15 @@ msgstr "" "abschicken und wird auch in Zukunft dieser Gruppe nicht mehr beitreten " "können." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Diesen Benutzerzugang nicht für diese Gruppe blockieren." -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Diesen Nutzer von der Gruppe sperren" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Datenbank Fehler beim Versuch den Nutzer aus der Gruppe zu blockieren." @@ -1747,19 +1749,19 @@ msgstr "Liste der Benutzer in dieser Gruppe." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blockieren" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Zum Admin ernennen" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" @@ -2046,12 +2048,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Senden" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen." -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2396,15 +2400,19 @@ msgstr "Nachricht hat kein Profil" msgid "%1$s's status on %2$s" msgstr "%1$s Status auf %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "Content-Typ " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Nur " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." @@ -3116,7 +3124,7 @@ msgstr "Entschuldigung, ungültiger Bestätigungscode." msgid "Registration successful" msgstr "Registrierung erfolgreich" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrieren" @@ -3175,22 +3183,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Längerer Name, bevorzugt dein „echter“ Name" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Meine Texte und Daten sind verfügbar unter" - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Namensnennung 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" "außer folgende private Daten: Passwort, E-Mail-Adresse, IM-Adresse und " "Telefonnummer." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3223,7 +3224,7 @@ msgstr "" "\n" "Danke für deine Anmeldung, wir hoffen das dir der Service gefällt." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3305,7 +3306,7 @@ msgstr "Du kannst deine eigene Nachricht nicht wiederholen." msgid "You already repeated that notice." msgstr "Nachricht bereits wiederholt" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Wiederholt" @@ -4649,11 +4650,11 @@ msgstr "" msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4955,23 +4956,21 @@ msgstr "" "Urheberrecht von Inhalt und Daten liegt bei den Beteiligten. Alle Rechte " "vorbehalten." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Alle " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "Lizenz." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Seitenerstellung" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Später" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Vorher" @@ -5264,12 +5263,14 @@ msgstr "%s hat die Gruppe %s verlassen" msgid "Fullname: %s" msgstr "Vollständiger Name: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Standort: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" @@ -5753,11 +5754,13 @@ msgstr "Mit Nutzernamen und Passwort anmelden" msgid "Sign up for a new account" msgstr "Registriere ein neues Nutzerkonto" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Bestätigung der E-Mail-Adresse" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5787,12 +5790,14 @@ msgstr "" "Vielen Dank!\n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s hat deine Nachrichten auf %2$s abonniert." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5818,17 +5823,20 @@ msgstr "" "Du kannst Deine E-Mail-Adresse und die Benachrichtigungseinstellungen auf %8" "$s ändern.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Biografie: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Neue E-Mail-Adresse um auf %s zu schreiben" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5849,21 +5857,31 @@ msgstr "" "Viele Grüße,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s Status" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS-Konfiguration" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Warte auf die Bestätigung dieser Telefonnummer." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Du wurdest von %s angestupst" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5890,12 +5908,14 @@ msgstr "" "Mit freundlichen Grüßen,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Neue private Nachricht von %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5928,12 +5948,14 @@ msgstr "" "Mit freundlichen Grüßen,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) hat deine Nachricht als Favorit gespeichert" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5964,13 +5986,23 @@ msgstr "" "Gruß,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" "%s (@%s) hat dir eine Nachricht gesendet um deine Aufmerksamkeit zu erlangen" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5983,18 +6015,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) hat dir gerade eine Mitteilung auf %2$s gesendet (eine '@-" -"Antwort').\n" -"\n" -"Die Mitteilung ist:\n" -"\n" -"%3$s\n" -"\n" -"Sie lautet:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6167,23 +6200,23 @@ msgstr "W" msgid "at" msgstr "in" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "im Zusammenhang" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Wiederholt von" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Antworten" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Nachricht wiederholt" @@ -6289,12 +6322,7 @@ msgstr "Tagesdurchschnitt" msgid "All groups" msgstr "Alle Gruppen" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "Kein id Argument." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Nicht unterstützte Methode." @@ -6318,6 +6346,11 @@ msgstr "Beliebte Benutzer" msgid "Popular" msgstr "Beliebte Beiträge" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "Kein id Argument." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Diese Nachricht wiederholen?" @@ -6508,47 +6541,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "vor einer Minute" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "vor %d Minuten" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "vor einer Stunde" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "vor %d Stunden" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "vor einem Tag" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "vor %d Tagen" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "vor einem Monat" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "vor %d Monaten" -#: lib/util.php:1064 +#: lib/util.php:1071 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 cd1052add1..fadc69bb54 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:29+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:26:58+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -762,7 +762,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Διαγραφή" @@ -804,7 +804,7 @@ msgstr "Ρυθμίσεις OpenID" msgid "You already blocked that user." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "" @@ -817,7 +817,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Όχι" @@ -828,11 +828,11 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Ναι" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "" @@ -881,9 +881,11 @@ msgstr "" msgid "Unblock this user" msgstr "" -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "ομάδες του χρήστη %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -956,7 +958,7 @@ msgstr "Ομάδες με τα περισσότερα μέλη" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1017,7 +1019,7 @@ msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυ msgid "Do not delete this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "" @@ -1644,11 +1646,11 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1656,15 +1658,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1742,20 +1744,20 @@ msgstr "" msgid "Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 #, fuzzy msgid "Make Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2016,12 +2018,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2330,16 +2334,19 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "Σύνδεση" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -3041,7 +3048,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -3093,23 +3100,15 @@ 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 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" "εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " "διεύθυνση IM, τηλεφωνικό νούμερο." -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3143,7 +3142,7 @@ msgstr "" "Ευχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία " "μας." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3224,7 +3223,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "Δημιουργία" @@ -4503,11 +4502,11 @@ msgstr "" msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4820,23 +4819,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "" @@ -5137,12 +5134,14 @@ msgstr "ομάδες των χρηστών %s" msgid "Fullname: %s" msgstr "Ονοματεπώνυμο" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" @@ -5589,11 +5588,13 @@ msgstr "Σύνδεση με όνομα χρήστη και κωδικό" msgid "Sign up for a new account" msgstr "Εγγραφή για ένα νέο λογαριασμό" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5610,12 +5611,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5630,19 +5633,22 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Βιογραφικό: %s\n" "\n" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5655,21 +5661,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Κατάσταση του/της %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5685,12 +5701,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5709,12 +5727,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5735,12 +5755,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5753,6 +5783,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5918,23 +5960,23 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Επαναλαμβάνεται από" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Ρυθμίσεις OpenID" @@ -6042,11 +6084,7 @@ msgstr "" msgid "All groups" msgstr "" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6070,6 +6108,10 @@ msgstr "Προτεινόμενα" msgid "Popular" msgstr "Δημοφιλή" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "" + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6267,47 +6309,47 @@ msgctxt "role" msgid "Moderator" msgstr "Συντονιστής" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1064 +#: lib/util.php:1071 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 f7887cab42..c84e1d647e 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:32+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:01+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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -763,7 +763,7 @@ msgid "Preview" msgstr "Preview" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Delete" @@ -804,7 +804,7 @@ msgstr "Avatar deleted." msgid "You already blocked that user." msgstr "You already blocked that user." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Block user" @@ -820,7 +820,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "No" @@ -830,11 +830,11 @@ msgstr "Do not block this user" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Block this user" @@ -882,8 +882,10 @@ msgstr "Unblock" msgid "Unblock this user" msgstr "Unblock this user" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Post to " #: actions/confirmaddress.php:75 @@ -953,7 +955,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1014,7 +1016,7 @@ msgstr "Are you sure you want to delete this notice?" msgid "Do not delete this notice" msgstr "Do not delete this notice" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Delete this notice" @@ -1628,11 +1630,11 @@ msgstr "User is already blocked from group." msgid "User is not a member of group." msgstr "User is not a member of group." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Block user from group" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1643,15 +1645,15 @@ msgstr "" "will be removed from the group, unable to post and unable to subscribe to " "the group in the future." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Do not block this user from this group" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Block this user from this group" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Database error blocking user from group." @@ -1729,19 +1731,19 @@ msgstr "A list of the users in this group." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Block" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Make user an admin of the group" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Make admin" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Make this user an admin" @@ -2014,12 +2016,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Send" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s has invited you to join them on %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2357,15 +2361,19 @@ msgstr "Notice has no profile" msgid "%1$s's status on %2$s" msgstr "%1$s's status on %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "content type " -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -3060,7 +3068,7 @@ msgstr "Sorry, invalid invitation code." msgid "Registration successful" msgstr "Registration successful" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Register" @@ -3112,22 +3120,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Longer name, preferably your \"real\" name" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "My text and files are available under " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " except this private data: password, email address, IM address, and phone " "number." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3160,7 +3161,7 @@ msgstr "" "\n" "Thanks for signing up and we hope you enjoy using this service." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3240,7 +3241,7 @@ msgstr "You can't repeat your own notice." msgid "You already repeated that notice." msgstr "You already repeated that notice." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Repeated" @@ -4555,11 +4556,11 @@ msgstr "You are banned from posting notices on this site." msgid "Problem saving notice." msgstr "Problem saving notice." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problem saving group inbox." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4875,23 +4876,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licence." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "After" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Before" @@ -5183,12 +5182,14 @@ msgstr "%s left group %s" msgid "Fullname: %s" msgstr "Fullname: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Location: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" @@ -5630,11 +5631,13 @@ msgstr "Login with a username and password" msgid "Sign up for a new account" msgstr "Sign up for a new account" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "E-mail address confirmation" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5651,12 +5654,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s is now listening to your notices on %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5681,17 +5686,20 @@ msgstr "" "----\n" "Change your email address or notification options at %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Bio: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "New e-mail address for posting to %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5712,21 +5720,31 @@ msgstr "" "Faithfully yours,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS confirmation" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Awaiting confirmation on this phone number." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "You've been nudged by %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5742,12 +5760,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "New private message from %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5766,12 +5786,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) added your notice as a favorite" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5792,12 +5814,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5810,6 +5842,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5972,23 +6016,23 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "in context" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Repeated by" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Notice repeated" @@ -6094,11 +6138,7 @@ msgstr "" msgid "All groups" msgstr "All groups" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "No return-to arguments." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6122,6 +6162,10 @@ msgstr "Featured" msgid "Popular" msgstr "Popular" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "No return-to arguments." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Repeat this notice?" @@ -6314,47 +6358,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "a few seconds ago" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "about a minute ago" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "about %d minutes ago" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "about an hour ago" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "about %d hours ago" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "about a day ago" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "about %d days ago" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "about a month ago" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "about %d months ago" -#: lib/util.php:1064 +#: lib/util.php:1071 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 95f37a4b88..39b85e68d6 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:36+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:04+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -770,7 +770,7 @@ msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Borrar" @@ -810,7 +810,7 @@ msgstr "Imagen borrada." msgid "You already blocked that user." msgstr "Ya has bloqueado a este usuario." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear usuario." @@ -826,7 +826,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "No" @@ -836,11 +836,11 @@ msgstr "No bloquear a este usuario" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario." @@ -889,8 +889,10 @@ msgstr "Desbloquear" msgid "Unblock this user" msgstr "Desbloquear este usuario" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Mensaje a " #: actions/confirmaddress.php:75 @@ -960,7 +962,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1021,7 +1023,7 @@ msgstr "¿Estás seguro de que quieres eliminar este aviso?" msgid "Do not delete this notice" msgstr "No eliminar este mensaje" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Borrar este aviso" @@ -1637,11 +1639,11 @@ msgstr "Usuario ya está bloqueado del grupo." msgid "User is not a member of group." msgstr "Usuario no es miembro del grupo" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Bloquear usuario de grupo" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1652,15 +1654,15 @@ msgstr "" "eliminará del grupo y no podrá publicar ni suscribirse al grupo en lo " "sucesivo." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "No bloquear este usuario de este grupo" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Bloquear este usuario de este grupo" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" "Se ha producido un error en la base de datos al bloquear el usuario del " @@ -1741,19 +1743,19 @@ msgstr "Lista de los usuarios en este grupo." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Convertir al usuario en administrador del grupo" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Convertir en administrador" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Convertir a este usuario en administrador" @@ -2033,12 +2035,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s te ha invitado a que te unas con el/ellos en %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2383,15 +2387,19 @@ msgstr "Aviso sin perfil" msgid "%1$s's status on %2$s" msgstr "estado de %1$s en %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "tipo de contenido " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Sólo " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" @@ -3104,7 +3112,7 @@ msgstr "El código de invitación no es válido." msgid "Registration successful" msgstr "Registro exitoso." -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrarse" @@ -3161,22 +3169,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nombre más largo, preferiblemente tu nombre \"real\"" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Mi texto y archivos están disponibles bajo" - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Reconocimiento 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" "con excepción de esta información privada: contraseña, dirección de correo " "electrónico, dirección de mensajería instantánea y número de teléfono." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3209,7 +3210,7 @@ msgstr "" "\n" "¡Gracias por apuntarte! Esperamos que disfrutes usando este servicio." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3292,7 +3293,7 @@ msgstr "No puedes repetir tus propios mensajes." msgid "You already repeated that notice." msgstr "Ya has repetido este mensaje." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Repetido" @@ -4632,11 +4633,11 @@ msgstr "Tienes prohibido publicar avisos en este sitio." msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Hubo un problema al guarda la bandeja de entrada del grupo." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4937,23 +4938,21 @@ msgstr "" "Derechos de autor de contenido y datos por los colaboradores. Todos los " "derechos reservados." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Todo" +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "Licencia." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Paginación" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Después" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Antes" @@ -5251,12 +5250,14 @@ msgstr "%s dejó grupo %s" msgid "Fullname: %s" msgstr "Nombre completo: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Lugar: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Página de inicio: %s" @@ -5704,11 +5705,13 @@ msgstr "Ingresar con un nombre de usuario y contraseña." msgid "Sign up for a new account" msgstr "Registrarse para una nueva cuenta" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Confirmación de correo electrónico" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5725,12 +5728,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ahora está escuchando tus avisos en %2$s" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5751,17 +5756,20 @@ msgstr "" "Atentamente,\n" "%4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Bio: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nueva dirección de correo para postear a %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5782,21 +5790,31 @@ msgstr "" "Attentamente, \n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "estado de %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS confirmación" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Esperando confirmación de este número de teléfono." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s te mandó un zumbido " -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5823,12 +5841,14 @@ msgstr "" "Un cordial saludo,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nuevo mensaje privado de %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5847,12 +5867,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) agregó tu aviso como un favorito" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5873,12 +5895,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5891,6 +5923,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6060,23 +6104,23 @@ msgstr "W" msgid "at" msgstr "en" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "en contexto" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Repetido por" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Responder este aviso." -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Aviso repetido" @@ -6182,11 +6226,7 @@ msgstr "Promedio diario" msgid "All groups" msgstr "Todos los grupos" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "No hay respuesta a los argumentos." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Método no implementado." @@ -6210,6 +6250,10 @@ msgstr "Destacado" msgid "Popular" msgstr "Popular" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "No hay respuesta a los argumentos." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Responder este aviso?" @@ -6403,47 +6447,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "hace unos segundos" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "hace un minuto" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "hace %d minutos" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "hace una hora" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "hace %d horas" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "hace un día" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "hace %d días" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "hace un mes" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "hace %d meses" -#: lib/util.php:1064 +#: lib/util.php:1071 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 c1c8ba0fee..643cf3d284 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-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:45+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:14+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title @@ -31,15 +31,13 @@ msgstr "دسترسی" #. TRANS: Page notice #: actions/accessadminpanel.php:67 -#, fuzzy msgid "Site access settings" -msgstr "تنظیمات دیگر" +msgstr "تنظیمات دسترسی" #. TRANS: Form legend for registration form. #: actions/accessadminpanel.php:161 -#, fuzzy msgid "Registration" -msgstr "ثبت نام" +msgstr "ثبت‌نام" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -48,7 +46,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "خصوصی" @@ -75,15 +72,13 @@ msgstr "مسدود" #. TRANS: Title / tooltip for button to save access settings in site admin panel #: actions/accessadminpanel.php:202 -#, fuzzy msgid "Save access settings" -msgstr "تنظیمات چهره" +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 @@ -166,13 +161,13 @@ msgstr "" #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" #: actions/all.php:142 -#, fuzzy, php-format +#, 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 "" -"اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%" -"s) پیام می‌فرستد." +"می‌توانید از صفحه‌ی شخصی‌اش به او [سقلمه](../%2$s) بزنید یا [چیزی بنویسید](%%%%" +"action.newnotice%%%%?status_textarea=%3$s) تا توجه او را جذب کنید." #: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format @@ -340,18 +335,16 @@ msgid "No status found with that ID." msgstr "هیچ وضعیتی با آن شناسه پیدا نشد." #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "این وضعیت درحال حاضر یک وضعیت مورد علاقه است!" +msgstr "این پیغام را پیش‌تر به علایق خود اضافه کرده‌اید" #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 msgid "Could not create favorite." msgstr "نمی‌توان وضعیت را موردعلاقه کرد." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "این وضعیت یک وضعیت موردعلاقه نیست!" +msgstr "این پیغام جزو علایق شما نیست" #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -371,9 +364,8 @@ msgid "Could not unfollow user: User not found." msgstr "نمی‌توان کاربر را دنبال نکرد: کاربر یافت نشد." #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "نمی‌توانید خودتان را دنبال نکنید!" +msgstr "نمی‌توانید خودتان را دنبال کنید." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." @@ -468,7 +460,7 @@ msgid "You have been blocked from that group by the admin." msgstr "دسترسی شما به گروه توسط مدیر آن محدود شده است." #: actions/apigroupjoin.php:138 actions/joingroup.php:134 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." msgstr "عضویت %s در گروه %s نا موفق بود." @@ -477,7 +469,7 @@ msgid "You are not a member of this group." msgstr "شما یک عضو این گروه نیستید." #: actions/apigroupleave.php:124 actions/leavegroup.php:129 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "خارج شدن %s از گروه %s نا موفق بود" @@ -765,7 +757,7 @@ msgid "Preview" msgstr "پیش‌نمایش" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "حذف" @@ -806,7 +798,7 @@ msgstr "چهره پاک شد." msgid "You already blocked that user." msgstr "شما هم اکنون آن کاربر را مسدود کرده اید." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "مسدود کردن کاربر" @@ -823,7 +815,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "خیر" @@ -833,11 +825,11 @@ msgstr "کاربر را مسدود نکن" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "بله" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -885,8 +877,10 @@ msgstr "آزاد سازی" msgid "Unblock this user" msgstr "آزاد سازی کاربر" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "ارسال به " #: actions/confirmaddress.php:75 @@ -960,7 +954,7 @@ msgstr "شما یک عضو این گروه نیستید." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1024,7 +1018,7 @@ msgstr "آیا اطمینان دارید که می‌خواهید این پیا msgid "Do not delete this notice" msgstr "این پیام را پاک نکن" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -1648,11 +1642,11 @@ msgstr "هم اکنون دسترسی کاربر به گروه مسدود شده msgid "User is not a member of group." msgstr "کاربر عضو گروه نیست." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "دسترسی کاربر به گروه را مسدود کن" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, fuzzy, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1660,15 +1654,15 @@ msgid "" "the group in the future." msgstr "آیا مطمئن هستید می‌خواهید دسترسی »%s« را به گروه »%s« مسدود کنید؟" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "دسترسی کاربر به گروه را مسدود نکن" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "دسترسی کاربر را به گروه مسدود کن" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "اشکال پایگاه داده در مسدود کردن کاربر" @@ -1744,19 +1738,19 @@ msgstr "یک فهرست از کاربران در این گروه" msgid "Admin" msgstr "مدیر" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "بازداشتن" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "کاربر یک مدیر گروه شود" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "مدیر شود" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" @@ -2032,12 +2026,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "فرستادن" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s شما را دعوت کرده است که در %2$s به آن‌ها بپیوندید." -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2357,15 +2353,19 @@ msgstr "ابن خبر ذخیره ای ندارد ." msgid "%1$s's status on %2$s" msgstr "وضعیت %1$s در %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "نوع محتوا " -#: actions/oembed.php:160 -msgid "Only " -msgstr " فقط" +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -3060,7 +3060,7 @@ msgstr "با عرض تاسف، کد دعوت نا معتبر است." msgid "Registration successful" msgstr "ثبت نام با موفقیت انجام شد." -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "ثبت نام" @@ -3112,22 +3112,15 @@ 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 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" "به استثنای این داده ی محرمانه : کلمه ی عبور، آدرس ایمیل، آدرس IM، و شماره " "تلفن." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3146,7 +3139,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3223,7 +3216,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی msgid "You already repeated that notice." msgstr "شما قبلا آن آگهی را تکرار کردید." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "" @@ -4508,12 +4501,12 @@ msgstr "شما از فرستادن پست در این سایت مردود شدی msgid "Problem saving notice." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4824,23 +4817,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "همه " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "مجوز." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "صفحه بندى" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "بعد از" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "قبل از" @@ -5143,12 +5134,14 @@ msgstr "%s گروه %s را ترک کرد." msgid "Fullname: %s" msgstr "نام کامل : %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "موقعیت : %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "صفحه خانگی : %s" @@ -5591,11 +5584,13 @@ msgstr "وارد شدن با یک نام کاربری و کلمه ی عبور" msgid "Sign up for a new account" msgstr "عضویت برای حساب کاربری جدید" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "تاییدیه ی آدرس ایمیل" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5612,12 +5607,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%2$s از حالا به خبر های شما گوش میده %1$s" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5632,17 +5629,20 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "موقعیت : %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "%s ادرس ایمیل جدید برای" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5661,21 +5661,31 @@ msgstr "" ", ازروی وفاداری خود شما \n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "وضعیت %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "تایید پیامک" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "منتظر تاییدیه برای این شماره تلفن." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5691,12 +5701,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5715,12 +5727,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr " خبر شما را به علایق خود اضافه کرد %s (@%s)" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5741,12 +5755,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "به توجه شما یک خبر فرستاده شده %s (@%s)" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5759,6 +5783,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5926,23 +5962,23 @@ msgstr "" msgid "at" msgstr "در" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "در زمینه" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "تکرار از" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "به این آگهی جواب دهید" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "جواب دادن" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "آگهی تکرار شد" @@ -6048,11 +6084,7 @@ msgstr "" msgid "All groups" msgstr "تمام گروه‌ها" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6076,6 +6108,10 @@ msgstr "خصوصیت" msgid "Popular" msgstr "محبوب" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "" + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6268,47 +6304,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "چند ثانیه پیش" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "حدود %d دقیقه پیش" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "حدود %d ساعت پیش" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "حدود یک روز پیش" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "حدود %d روز پیش" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "حدود یک ماه پیش" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "حدود %d ماه پیش" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "حدود یک سال پیش" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 0e3224b360..911eae9e4c 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:42+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:11+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -782,7 +782,7 @@ msgid "Preview" msgstr "Esikatselu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Poista" @@ -824,7 +824,7 @@ msgstr "Kuva poistettu." msgid "You already blocked that user." msgstr "Sinä olet jo estänyt tämän käyttäjän." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Estä käyttäjä" @@ -837,7 +837,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Ei" @@ -847,11 +847,11 @@ msgstr "Älä estä tätä käyttäjää" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Kyllä" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -899,9 +899,10 @@ msgstr "Poista esto" msgid "Unblock this user" msgstr "Poista esto tältä käyttäjältä" -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Kuva" #: actions/confirmaddress.php:75 @@ -976,7 +977,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -1037,7 +1038,7 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?" msgid "Do not delete this notice" msgstr "Älä poista tätä päivitystä" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -1678,11 +1679,11 @@ msgstr "Käyttäjä on asettanut eston sinulle." msgid "User is not a member of group." msgstr "Käyttäjä ei kuulu tähän ryhmään." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Estä käyttäjä ryhmästä" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1690,15 +1691,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Älä estä tätä käyttäjää tästä ryhmästä" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1776,19 +1777,19 @@ msgstr "Lista ryhmän käyttäjistä." msgid "Admin" msgstr "Ylläpito" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Estä" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Tee tästä käyttäjästä ylläpitäjä" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Tee ylläpitäjäksi" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Tee tästä käyttäjästä ylläpitäjä" @@ -2066,12 +2067,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Lähetä" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2419,16 +2422,19 @@ msgstr "Päivitykselle ei ole profiilia" msgid "%1$s's status on %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "Yhdistä" -#: actions/oembed.php:160 -msgid "Only " -msgstr "Vain " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -3147,7 +3153,7 @@ msgstr "Virheellinen kutsukoodin." msgid "Registration successful" msgstr "Rekisteröityminen onnistui" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Rekisteröidy" @@ -3203,24 +3209,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Pitempi nimi, mieluiten oikea nimesi" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "" -"Minun tekstini ja tiedostoni ovat käytettävissä seuraavan lisenssin " -"mukaisesti " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" "poislukien yksityinen tieto: salasana, sähköpostiosoite, IM-osoite, " "puhelinnumero." -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3253,7 +3250,7 @@ msgstr "" "\n" "Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3342,7 +3339,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." msgid "You already repeated that notice." msgstr "Sinä olet jo estänyt tämän käyttäjän." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "Luotu" @@ -4679,12 +4676,12 @@ msgstr "Päivityksesi tähän palveluun on estetty." msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -5007,23 +5004,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Kaikki " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "lisenssi." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Sivutus" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Myöhemmin" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Aiemmin" @@ -5335,12 +5330,14 @@ msgstr "%s erosi ryhmästä %s" msgid "Fullname: %s" msgstr "Koko nimi: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Kotipaikka: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Kotisivu: %s" @@ -5797,11 +5794,13 @@ msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla" msgid "Sign up for a new account" msgstr "Luo uusi käyttäjätili" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Sähköpostiosoitteen vahvistus" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5818,12 +5817,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5848,19 +5849,22 @@ msgstr "" "----\n" "Voit vaihtaa sähköpostiosoitetta tai ilmoitusasetuksiasi %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Tietoja: %s\n" "\n" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5881,21 +5885,31 @@ msgstr "" "Terveisin,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s päivitys" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS vahvistus" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Odotetaan vahvistusta tälle puhelinnumerolle." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s tönäisi sinua" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5911,12 +5925,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Uusi yksityisviesti käyttäjältä %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5935,12 +5951,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s lisäsi päivityksesi suosikkeihinsa" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5961,12 +5979,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5979,6 +6007,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6147,25 +6187,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "Ei sisältöä!" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "Luotu" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Vastaus" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Päivitys on poistettu." @@ -6275,12 +6315,7 @@ msgstr "" msgid "All groups" msgstr "Kaikki ryhmät" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "Ei id parametria." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6304,6 +6339,11 @@ msgstr "Esittelyssä" msgid "Popular" msgstr "Suosituimmat" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "Ei id parametria." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6508,47 +6548,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "muutama sekunti sitten" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "noin minuutti sitten" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "noin %d minuuttia sitten" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "noin tunti sitten" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "noin %d tuntia sitten" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "noin päivä sitten" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "noin %d päivää sitten" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "noin kuukausi sitten" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "noin %d kuukautta sitten" -#: lib/util.php:1064 +#: lib/util.php:1071 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 19a386abd3..e0b56a40bc 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:48+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:17+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -780,7 +780,7 @@ msgid "Preview" msgstr "Aperçu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Supprimer" @@ -820,7 +820,7 @@ msgstr "Avatar supprimé." msgid "You already blocked that user." msgstr "Vous avez déjà bloqué cet utilisateur." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquer cet utilisateur" @@ -836,7 +836,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Non" @@ -846,11 +846,11 @@ msgstr "Ne pas bloquer cet utilisateur" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Oui" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquer cet utilisateur" @@ -898,8 +898,10 @@ msgstr "Débloquer" msgid "Unblock this user" msgstr "Débloquer cet utilisateur" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Poster sur " #: actions/confirmaddress.php:75 @@ -969,7 +971,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1030,7 +1032,7 @@ msgstr "Voulez-vous vraiment supprimer cet avis ?" msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -1644,11 +1646,11 @@ msgstr "Cet utilisateur est déjà bloqué pour le groupe." msgid "User is not a member of group." msgstr "L’utilisateur n’est pas membre du groupe." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Bloquer cet utilisateur du groupe" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1659,15 +1661,15 @@ msgstr "" "seront supprimés du groupe ; il leur sera interdit d’y poster et de s’y " "abonner à l’avenir." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Ne pas bloquer cet utilisateur pour ce groupe" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Bloquer cet utilisateur de de groupe" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" "Erreur de la base de données lors du blocage de l’utilisateur du groupe." @@ -1747,19 +1749,19 @@ msgstr "Liste des utilisateurs inscrits à ce groupe." msgid "Admin" msgstr "Administrer" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Bloquer" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Faire de cet utilisateur un administrateur du groupe" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Faire un administrateur" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Faire de cet utilisateur un administrateur" @@ -2046,12 +2048,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Envoyer" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s vous invite à vous inscrire sur %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2404,15 +2408,19 @@ msgstr "L’avis n’a pas de profil" msgid "%1$s's status on %2$s" msgstr "Statut de %1$s sur %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "type de contenu " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Seulement " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -3125,7 +3133,7 @@ msgstr "Désolé, code d’invitation invalide." msgid "Registration successful" msgstr "Compte créé avec succès" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Créer un compte" @@ -3182,22 +3190,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nom plus long, votre \"vrai\" nom de préférence" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Mes textes et mes fichiers sont disponibles sous" - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Paternité 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " à l’exception de ces données personnelles : mot de passe, adresse e-mail, " "adresse de messagerie instantanée, numéro de téléphone." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3231,7 +3232,7 @@ msgstr "" "Merci pour votre inscription ! Nous vous souhaitons d’apprécier notre " "service." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3313,7 +3314,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis." msgid "You already repeated that notice." msgstr "Vous avez déjà repris cet avis." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Repris" @@ -4668,11 +4669,11 @@ msgstr "Il vous est interdit de poster des avis sur ce site." msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4973,23 +4974,21 @@ msgstr "" "Le contenu et les données sont sous le droit d’auteur du contributeur. Tous " "droits réservés." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Tous " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licence." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Après" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Avant" @@ -5286,12 +5285,14 @@ msgstr "%s a quitté le groupe %s" msgid "Fullname: %s" msgstr "Nom complet : %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Emplacement : %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Site Web : %s" @@ -5785,11 +5786,13 @@ msgstr "Ouvrez une session avec un identifiant et un mot de passe" msgid "Sign up for a new account" msgstr "Créer un nouveau compte" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Confirmation de l’adresse courriel" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5819,12 +5822,14 @@ msgstr "" "Merci de votre attention,\n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s suit maintenant vos avis sur %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5849,17 +5854,20 @@ msgstr "" "----\n" "Changez votre adresse de courriel ou vos options de notification sur %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Bio : %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nouvelle adresse courriel pour poster dans %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5880,21 +5888,31 @@ msgstr "" "Cordialement,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Statut de %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Confirmation SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Numéro de téléphone en attente de confirmation." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Vous avez reçu un clin d’œil de %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5921,12 +5939,14 @@ msgstr "" "Bien à vous,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nouveau message personnel de %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5959,12 +5979,14 @@ msgstr "" "Bien à vous,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) a ajouté un de vos avis à ses favoris" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -6002,12 +6024,22 @@ msgstr "" "Cordialement,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) vous a envoyé un avis" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -6020,17 +6052,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) vient de vous envoyer un avis (une réponse « @ ») sur %2$s.\n" -"\n" -"L’avis est là :\n" -"\n" -"\t%3$s\n" -"\n" -"Il dit :\n" -"\n" -"\t%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6201,23 +6235,23 @@ msgstr "O" msgid "at" msgstr "chez" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "dans le contexte" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Repris par" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Répondre à cet avis" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Répondre" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Avis repris" @@ -6323,11 +6357,7 @@ msgstr "Moyenne journalière" msgid "All groups" msgstr "Tous les groupes" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Aucun argument de retour." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Méthode non implémentée." @@ -6351,6 +6381,10 @@ msgstr "En vedette" msgid "Popular" msgstr "Populaires" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Aucun argument de retour." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Reprendre cet avis ?" @@ -6541,47 +6575,47 @@ msgctxt "role" msgid "Moderator" msgstr "Modérateur" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "il y a quelques secondes" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "il y a 1 minute" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "il y a %d minutes" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "il y a 1 heure" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "il y a %d heures" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "il y a 1 jour" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "il y a %d jours" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "il y a 1 mois" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "il y a %d mois" -#: lib/util.php:1064 +#: lib/util.php:1071 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 c21298a8e6..b101350c2b 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-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:51+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:21+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -782,7 +782,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 #, fuzzy msgid "Delete" msgstr "eliminar" @@ -826,7 +826,7 @@ msgstr "Avatar actualizado." msgid "You already blocked that user." msgstr "Xa bloqueaches a este usuario." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear usuario" @@ -842,7 +842,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "No" @@ -853,11 +853,11 @@ msgstr "Bloquear usuario" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" @@ -909,9 +909,10 @@ msgstr "Desbloquear" msgid "Unblock this user" msgstr "Bloquear usuario" -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Chíos dende SMS" #: actions/confirmaddress.php:75 @@ -986,7 +987,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:1219 +#: lib/action.php:1221 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." @@ -1050,7 +1051,7 @@ msgstr "Estas seguro que queres eliminar este chío?" msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 #, fuzzy msgid "Delete this notice" msgstr "Eliminar chío" @@ -1704,12 +1705,12 @@ msgstr "O usuario bloqueoute." msgid "User is not a member of group." msgstr "%1s non é unha orixe fiable." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "Bloquear usuario" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, fuzzy, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1720,15 +1721,15 @@ msgstr "" "do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " "ser notificado de ningunha resposta-@ del." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1810,19 +1811,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2098,12 +2099,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s invitoute a unirse a él en %2$s." -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2450,16 +2453,19 @@ msgstr "O chío non ten perfil" msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "Conectar" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -3186,7 +3192,7 @@ msgstr "Acounteceu un erro co código de confirmación." msgid "Registration successful" msgstr "Xa estas rexistrado!!" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Rexistrar" @@ -3245,23 +3251,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nome máis longo, preferiblemente o teu nome \"real\"" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "O meu texto e arquivos están dispoñibles baixo licenza " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:497 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " agás esta informción privada: contrasinal, dirección de correo electrónico, " "dirección IM, número de teléfono." -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3293,7 +3291,7 @@ msgstr "" "\n" "Grazas por rexistrarte e esperamos que laretexes moito." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3382,7 +3380,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza." msgid "You already repeated that notice." msgstr "Xa bloqueaches a este usuario." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "Crear" @@ -4735,12 +4733,12 @@ msgstr "Tes restrinxido o envio de chíos neste sitio." msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -5065,25 +5063,22 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -#, fuzzy -msgid "All " -msgstr "Todos" - -#: lib/action.php:855 -msgid "license." +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 #, fuzzy msgid "After" msgstr "« Despois" -#: lib/action.php:1171 +#: lib/action.php:1173 #, fuzzy msgid "Before" msgstr "Antes »" @@ -5400,12 +5395,14 @@ msgstr "%s / Favoritos dende %s" msgid "Fullname: %s" msgstr "Nome completo: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Ubicación: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Páxina persoal: %s" @@ -5906,11 +5903,13 @@ msgstr "Accede co teu nome de usuario e contrasinal." msgid "Sign up for a new account" msgstr "Crear nova conta" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Confirmar correo electrónico" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5939,12 +5938,14 @@ msgstr "" "Grazas polo teu tempo, \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está a escoitar os teus chíos %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5965,17 +5966,20 @@ msgstr "" "Atentamente todo seu,\n" "%4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "Ubicación: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nova dirección de email para posterar en %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5996,21 +6000,31 @@ msgstr "" "Sempre teu...,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Estado de %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Confirmación de SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Agardando a confirmación neste número de teléfono." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s douche un toque" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -6036,12 +6050,14 @@ msgstr "" "With kind regards,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "%s enviouche unha nova mensaxe privada" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -6074,12 +6090,14 @@ msgstr "" "With kind regards,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s gustoulle o teu chío" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -6112,12 +6130,22 @@ msgstr "" "Fielmente teu,\n" "%5$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -6130,6 +6158,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6301,27 +6341,27 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "Sen contido!" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "Crear" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 #, fuzzy msgid "Reply to this notice" msgstr "Non se pode eliminar este chíos." -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 #, fuzzy msgid "Reply" msgstr "contestar" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Chío publicado" @@ -6436,12 +6476,7 @@ msgstr "" msgid "All groups" msgstr "Tódalas etiquetas" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "Non hai argumento id." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6466,6 +6501,11 @@ msgstr "Destacado" msgid "Popular" msgstr "Popular" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "Non hai argumento id." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6677,47 +6717,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "fai uns segundos" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "fai un minuto" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "fai %d minutos" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "fai unha hora" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "fai %d horas" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "fai un día" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "fai %d días" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "fai un mes" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "fai %d meses" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "fai un ano" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 4476df821e..e5a3cd6dd9 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:24:51+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:24+0000\n" "Language-Team: Galician\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: out-statusnet\n" @@ -769,7 +769,7 @@ msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Borrar" @@ -809,7 +809,7 @@ msgstr "Borrouse o avatar." msgid "You already blocked that user." msgstr "Xa bloqueou ese usuario." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear o usuario" @@ -825,7 +825,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Non" @@ -835,11 +835,11 @@ msgstr "Non bloquear este usuario" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario" @@ -887,8 +887,10 @@ msgstr "Desbloquear" msgid "Unblock this user" msgstr "Desbloquear este usuario" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Publicar en " #: actions/confirmaddress.php:75 @@ -958,7 +960,7 @@ msgstr "Non é o dono desa aplicación." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -1019,7 +1021,7 @@ msgstr "Está seguro de querer borrar esta nota?" msgid "Do not delete this notice" msgstr "Non borrar esta nota" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Borrar esta nota" @@ -1508,7 +1510,7 @@ msgid "" "notice to your favorites!" msgstr "" "Por que non [rexistrar unha conta](%%action.register%%) e ser o primeiro en " -"engadir unha nota aos seus favoritos?!" +"engadir unha nota aos seus favoritos?" #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 @@ -1637,11 +1639,11 @@ msgstr "O usuario xa está excluído do grupo." msgid "User is not a member of group." msgstr "O usuario non pertence ao grupo." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Excluír do grupo ao usuario" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1652,15 +1654,15 @@ msgstr "" "do grupo, sen a posibilidade de publicar nada nel nin volver subscribirse a " "el no futuro." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Non excluír deste grupo a este usuario" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Excluír deste grupo a este usuario" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Houbo un erro na base de datos ao excluír do grupo ao usuario." @@ -1739,19 +1741,19 @@ msgstr "Unha lista dos usuarios pertencentes a este grupo." msgid "Admin" msgstr "Administrador" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Excluír" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Converter ao usuario en administrador do grupo" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Converter en administrador" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Converter a este usuario en administrador" @@ -1870,7 +1872,8 @@ msgid "" "message with further instructions. (Did you add %s to your buddy list?)" msgstr "" "Agardando pola confirmación deste enderezo. Busque na cúa conta de Jabber/" -"GTalk unha mensaxe con máis instrucións. (Engadiu %s á súa lista de amigos?)" +"GTalk unha mensaxe con máis instrucións. (Engadiu a %s á súa lista de " +"amigos?)" #: actions/imsettings.php:124 msgid "IM address" @@ -1882,13 +1885,13 @@ 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 "" -"Enderezo de Jabber ou GTalk, coma «nomedousuario@example.org». Asegúrese " +"Enderezo de Jabber ou GTalk, coma \"nomedeusuario@example.org\". Asegúrese " "primeiro de engadir a %s á súa lista de amigos no seu cliente de mensaxería " "instantánea ou en GTalk." #: actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." -msgstr "Enviarme as notas mediante Jabber ou GTalk." +msgstr "Enviádeme as notas mediante Jabber ou GTalk." #: actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." @@ -1897,7 +1900,7 @@ msgstr "Publicar unha nota cando cambie o meu estado en Jabber ou GTalk." #: actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -"Enviarme as respostas mediante Jabber ou GTalk da xente á que non estou " +"Enviádeme as respostas mediante Jabber ou GTalk da xente á que non estou " "subscrita." #: actions/imsettings.php:159 @@ -1906,7 +1909,7 @@ msgstr "Publicar unha MicroID para o meu enderezo de Jabber ou GTalk." #: actions/imsettings.php:285 msgid "No Jabber ID." -msgstr "Non hai unha ID de Jabber." +msgstr "Non existe ningunha ID de Jabber." #: actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" @@ -1986,7 +1989,8 @@ msgstr "%1$s (%2$s)" #: actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" -msgstr "Estas persoas xa son usuarios e suscribíuselle automaticamente a elas:" +msgstr "" +"Estas persoas xa son usuarios e subscribíuselle automaticamente a elas:" #: actions/invite.php:144 msgid "Invitation(s) sent to the following people:" @@ -2029,12 +2033,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s convidouno a unirse a el en %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2066,11 +2072,11 @@ msgid "" msgstr "" "%1$s convidouno a unirse a el en %2$s (%3$s).\n" "\n" -"%2$s é un servizo de “micro-blogging” que lle permite estar ao día coas " -"persoas que coñece e coas que lle interesen.\n" +"%2$s é un servizo de microblogging que lle permite estar ao día coas persoas " +"que coñece e coas que lle interesen.\n" "\n" -"Tamén pode compartir novas persoais, pensamentos, ou a súa vida en liña con " -"outros coñecidos. Tamén está moi ben para coñecer a xente con intereses " +"Tamén pode compartir novas persoais, pensamentos ou a súa vida en liña con " +"outros coñecidos. Tamén está moi ben para coñecer xente con intereses " "similares aos seus.\n" "\n" "%1$s dixo:\n" @@ -2086,7 +2092,7 @@ msgstr "" "\n" "%6$s\n" "\n" -"Se non pode ignorar esta mensaxe. Grazas polo seu tempo.\n" +"Se non, pode ignorar esta mensaxe. Grazas polo seu tempo.\n" "\n" "Cordialmente, %2$s\n" @@ -2140,7 +2146,7 @@ msgstr "Identificarse no sitio" #: actions/login.php:236 actions/register.php:478 msgid "Remember me" -msgstr "Lembrarme" +msgstr "Lembrádeme" #: actions/login.php:237 actions/register.php:480 msgid "Automatically login in the future; not for shared computers!" @@ -2177,12 +2183,12 @@ msgstr "" #: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "%1$s xa é administrador do grupo «%2$s»." +msgstr "%1$s xa é administrador do grupo \"%2$s\"." #: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "Non se pudi obter o rexistro de pertenza de %1$s ao grupo %2$s." +msgstr "Non se puido obter o rexistro de pertenza de %1$s ao grupo %2$s." #: actions/makeadmin.php:146 #, php-format @@ -2207,7 +2213,7 @@ msgstr "Utilice o seguinte formulario para rexistrar unha aplicación nova." #: actions/newapplication.php:176 msgid "Source URL is required." -msgstr "Precísase do URL fonte." +msgstr "Necesítase o URL de orixe." #: actions/newapplication.php:258 actions/newapplication.php:267 msgid "Could not create application." @@ -2250,7 +2256,7 @@ msgstr "Enviouse a mensaxe" #: actions/newmessage.php:185 #, php-format msgid "Direct message to %s sent." -msgstr "Enviouse a mensaxe directa a %s," +msgstr "Enviouse a mensaxe directa a %s." #: actions/newmessage.php:210 actions/newnotice.php:251 lib/channel.php:189 msgid "Ajax Error" @@ -2280,7 +2286,7 @@ msgstr "Busca de texto" #: actions/noticesearch.php:91 #, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Resultados da busca de «%1$s» en %2$s" +msgstr "Resultados da busca de \"%1$s\" en %2$s" #: actions/noticesearch.php:121 #, php-format @@ -2297,19 +2303,18 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Que lle parece [rexistrar unha conta](%%%%action.register%%%%) e ser o " -"primeiro en [publicar sobre este tema](%%%%action.newnotice%%%%?" -"status_textarea=%s)?" +"Por que non [rexistrar unha conta](%%%%action.register%%%%) e ser o primeiro " +"en [publicar sobre este tema](%%%%action.newnotice%%%%?status_textarea=%s)?" #: actions/noticesearchrss.php:96 #, php-format msgid "Updates with \"%s\"" -msgstr "Actualizacións con «%s»" +msgstr "Actualizacións con \"%s\"" #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Actualizacións que conteñen os termos «%1$s» en %2$s." +msgstr "Actualizacións que conteñen o termo \"%1$s\" en %2$s!" #: actions/nudge.php:85 msgid "" @@ -2367,7 +2372,7 @@ msgstr "Non autorizou o acceso á súa conta para ningunha aplicación." #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " msgstr "" -"os desenvolvedores poden editar a configuración de rexistro das dúas " +"Os desenvolvedores poden editar a configuración de rexistro das súas " "aplicacións " #: actions/oembed.php:79 actions/shownotice.php:100 @@ -2379,15 +2384,19 @@ msgstr "Non hai perfil para a nota" msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "tipo de contido " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Só " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Non se soporta ese formato de datos." @@ -2414,7 +2423,7 @@ msgstr " (servizo gratuíto)" #: actions/othersettings.php:116 msgid "Shorten URLs with" -msgstr "Abreviar os URLs con" +msgstr "Abreviar os enderezos URL con" #: actions/othersettings.php:117 msgid "Automatic shortening service to use." @@ -2431,12 +2440,12 @@ msgstr "Amosar ou agochar os deseños do perfil." #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "" -"O servizo de abreviación de URLs é longo de máis (o límite está en 50 " -"caracteres)." +"O servizo de abreviación de enderezos URL é longo de máis (o límite está en " +"50 caracteres)." #: actions/otp.php:69 msgid "No user ID specified." -msgstr "Non se especificou unha ID de usuario." +msgstr "Non se especificou ningunha ID de usuario." #: actions/otp.php:83 msgid "No login token specified." @@ -2457,12 +2466,12 @@ msgstr "O pase caducou." #: actions/outbox.php:58 #, php-format msgid "Outbox for %1$s - page %2$d" -msgstr "Caixa de saída para %1$s - páxina %2$d" +msgstr "Caixa de saída de %1$s - páxina %2$d" #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" -msgstr "Caixa de saída para %s" +msgstr "Caixa de saída de %s" #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." @@ -2520,7 +2529,7 @@ msgstr "O contrasinal anterior non é correcto" #: actions/passwordsettings.php:181 msgid "Error saving user; invalid." -msgstr "Houbo un eror ao gardar o usuario. Incorrecto." +msgstr "Houbo un erro ao gardar o usuario. Incorrecto." #: actions/passwordsettings.php:186 actions/recoverpassword.php:381 msgid "Can't save new password." @@ -2537,7 +2546,7 @@ msgstr "Rutas" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site." -msgstr "Configuración do servidor e as rutas para este sitio StatusNet." +msgstr "Configuración do servidor e das rutas para este sitio StatusNet." #: actions/pathsadminpanel.php:157 #, php-format @@ -2593,11 +2602,11 @@ msgstr "Ruta do directorio das traducións" #: actions/pathsadminpanel.php:250 msgid "Fancy URLs" -msgstr "URLs agradables" +msgstr "Enderezos URL agradables" #: actions/pathsadminpanel.php:252 msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Utilizar URLs agradables (mellores de ler ou lembrar)?" +msgstr "Quere utilizar enderezos URL agradables (mellores de ler e lembrar)?" #: actions/pathsadminpanel.php:259 msgid "Theme" @@ -2625,7 +2634,7 @@ msgstr "Servidor de avatares" #: actions/pathsadminpanel.php:288 msgid "Avatar path" -msgstr "Ruta ao avatar" +msgstr "Ruta do avatar" #: actions/pathsadminpanel.php:292 msgid "Avatar directory" @@ -2641,7 +2650,7 @@ msgstr "Servidor de fondos" #: actions/pathsadminpanel.php:309 msgid "Background path" -msgstr "Ruta ao fondo" +msgstr "Ruta do fondo" #: actions/pathsadminpanel.php:313 msgid "Background directory" @@ -2673,7 +2682,7 @@ msgstr "Cando utilizar SSL" #: actions/pathsadminpanel.php:335 msgid "SSL server" -msgstr "Servidor SSl" +msgstr "Servidor SSL" #: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" @@ -2704,7 +2713,7 @@ msgstr "A etiqueta de persoa non é correcta: %s" #: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "Usuarios autoetiquetados con %1$s - páxina %2$d" +msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" #: actions/postnotice.php:95 msgid "Invalid notice content" @@ -2713,7 +2722,8 @@ msgstr "O contido da nota é incorrecto" #: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." -msgstr "A licenza “%1$s” da nota non é compatible coa licenza “%2$s” do sitio." +msgstr "" +"A licenza \"%1$s\" da nota non é compatible coa licenza \"%2$s\" do sitio." #: actions/profilesettings.php:60 msgid "Profile settings" @@ -2822,7 +2832,7 @@ msgstr "A biografía é longa de máis (o límite son %d caracteres)." #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." -msgstr "Non se escolleu un fuso horario." +msgstr "Non se escolleu ningún fuso horario." #: actions/profilesettings.php:241 msgid "Language is too long (max 50 chars)." @@ -2831,58 +2841,58 @@ msgstr "A lingua é longa de máis (o límite é de 50 caracteres)." #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format msgid "Invalid tag: \"%s\"" -msgstr "Etiqueta incorrecta: «%s»" +msgstr "Etiqueta incorrecta: \"%s\"" #: actions/profilesettings.php:306 msgid "Couldn't update user for autosubscribe." -msgstr "" +msgstr "Non se puido actualizar o usuario para subscribirse automaticamente." #: actions/profilesettings.php:363 msgid "Couldn't save location prefs." -msgstr "" +msgstr "Non se puideron gardar as preferencias de lugar." #: actions/profilesettings.php:375 msgid "Couldn't save profile." -msgstr "" +msgstr "Non se puido gardar o perfil." #: actions/profilesettings.php:383 msgid "Couldn't save tags." -msgstr "" +msgstr "Non se puideron gardar as etiquetas." #. TRANS: Message after successful saving of administrative settings. #: actions/profilesettings.php:391 lib/adminpanelaction.php:141 msgid "Settings saved." -msgstr "" +msgstr "Gardouse a configuración." #: actions/public.php:83 #, php-format msgid "Beyond the page limit (%s)" -msgstr "" +msgstr "Alén do límite da páxina (%s)" #: actions/public.php:92 msgid "Could not retrieve public stream." -msgstr "" +msgstr "Non se puido obter o fluxo público." #: actions/public.php:130 #, php-format msgid "Public timeline, page %d" -msgstr "" +msgstr "Liña do tempo pública, páxina %d" #: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" -msgstr "" +msgstr "Liña do tempo pública" #: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" -msgstr "" +msgstr "Fonte de novas no fluxo público (RSS 1.0)" #: actions/public.php:164 msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +msgstr "Fonte de novas no fluxo público (RSS 2.0)" #: actions/public.php:168 msgid "Public Stream Feed (Atom)" -msgstr "" +msgstr "Fonte de novas no fluxo público (Atom)" #: actions/public.php:188 #, php-format @@ -2890,16 +2900,20 @@ msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" +"Esta é a liña do tempo pública para %%site.name%% pero ninguén publicou nada " +"aínda." #: actions/public.php:191 msgid "Be the first to post!" -msgstr "" +msgstr "Sexa o primeiro en publicar!" #: actions/public.php:195 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" +"Por que non [rexistrar unha conta](%%action.register%%) e ser o primeiro en " +"publicar?" #: actions/public.php:242 #, php-format @@ -2909,6 +2923,11 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +"Isto é %%site.name%%, un servizo de [microblogging](http://en.wikipedia.org/" +"wiki/Microblogging) baseado na ferramenta de software libre [StatusNet]" +"(http://status.net/). [Únase agora](%%action.register%%) para compartir " +"notas persoais cos amigos, a familia e os compañeiros! ([Ler máis](%%doc.help" +"%%))" #: actions/public.php:247 #, php-format @@ -2917,10 +2936,13 @@ msgid "" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." msgstr "" +"Isto é %%site.name%%, un servizo de [microblogging](http://en.wikipedia.org/" +"wiki/Microblogging) baseado na ferramenta de software libre [StatusNet]" +"(http://status.net/)." #: actions/publictagcloud.php:57 msgid "Public tag cloud" -msgstr "" +msgstr "Nube de etiquetas públicas" #: actions/publictagcloud.php:63 #, php-format @@ -3079,7 +3101,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -3131,20 +3153,13 @@ 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 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3163,7 +3178,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3238,7 +3253,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "" @@ -4480,11 +4495,11 @@ msgstr "" msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4776,23 +4791,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "" @@ -5080,12 +5093,14 @@ msgstr "" msgid "Fullname: %s" msgstr "" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" @@ -5208,33 +5223,30 @@ msgid "You are not subscribed to anyone." msgstr "" #: lib/command.php:754 -#, 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:" +msgstr[0] "Vostede está subscrito a esta persoa:" +msgstr[1] "Vostede está subscrito a estas persoas:" #: lib/command.php:774 msgid "No one is subscribed to you." msgstr "" #: lib/command.php:776 -#, 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:" +msgstr[0] "Esta persoa está subscrita a vostede:" +msgstr[1] "Estas persoas están subscritas a vostede:" #: lib/command.php:796 msgid "You are not a member of any groups." msgstr "" #: lib/command.php:798 -#, 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:" +msgstr[0] "Vostede pertence a este grupo:" +msgstr[1] "Vostede pertence a estes grupos:" #: lib/command.php:812 msgid "" @@ -5527,11 +5539,13 @@ msgstr "" msgid "Sign up for a new account" msgstr "" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5548,12 +5562,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5568,17 +5584,20 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5591,21 +5610,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5621,12 +5650,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5645,12 +5676,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5671,12 +5704,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5689,6 +5732,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5851,23 +5906,23 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "" @@ -5973,11 +6028,7 @@ msgstr "" msgid "All groups" msgstr "" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6001,6 +6052,10 @@ msgstr "" msgid "Popular" msgstr "" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "" + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "" @@ -6191,47 +6246,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 97aed1f2c9..ed50d6c6e3 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:55+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:27+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -774,7 +774,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 #, fuzzy msgid "Delete" msgstr "מחק" @@ -818,7 +818,7 @@ msgstr "התמונה עודכנה." msgid "You already blocked that user." msgstr "כבר נכנסת למערכת!" -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 #, fuzzy msgid "Block user" msgstr "אין משתמש כזה." @@ -832,7 +832,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "לא" @@ -843,11 +843,11 @@ msgstr "אין משתמש כזה." #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "כן" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." @@ -899,9 +899,11 @@ msgstr "" msgid "Unblock this user" msgstr "אין משתמש כזה." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "תגובת עבור %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -975,7 +977,7 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1035,7 +1037,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "אין הודעה כזו." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "" @@ -1676,12 +1678,12 @@ msgstr "למשתמש אין פרופיל." msgid "User is not a member of group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "אין משתמש כזה." -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1689,17 +1691,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "נכשלה ההפניה לשרת: %s" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "אין משתמש כזה." -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1781,19 +1783,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2064,12 +2066,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "שלח" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2381,16 +2385,19 @@ msgstr "להודעה אין פרופיל" msgid "%1$s's status on %2$s" msgstr "הסטטוס של %1$s ב-%2$s " -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "התחבר" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -3100,7 +3107,7 @@ msgstr "שגיאה באישור הקוד." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "הירשם" @@ -3152,20 +3159,13 @@ 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 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3184,7 +3184,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3268,7 +3268,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון" msgid "You already repeated that notice." msgstr "כבר נכנסת למערכת!" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "צור" @@ -4579,12 +4579,12 @@ msgstr "" msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4907,24 +4907,22 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 #, fuzzy msgid "After" msgstr "<< אחרי" -#: lib/action.php:1171 +#: lib/action.php:1173 #, fuzzy msgid "Before" msgstr "לפני >>" @@ -5233,12 +5231,14 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "Fullname: %s" msgstr "שם מלא" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" @@ -5700,11 +5700,13 @@ msgstr "שם המשתמש או הסיסמה לא חוקיים" msgid "Sign up for a new account" msgstr "צור חשבון חדש" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5721,12 +5723,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5746,17 +5750,20 @@ msgstr "" " שלך,\n" " %4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "אודות: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5769,21 +5776,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5799,12 +5816,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5823,12 +5842,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5849,12 +5870,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5867,6 +5898,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6036,26 +6079,26 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "אין תוכן!" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "צור" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 #, fuzzy msgid "Reply" msgstr "הגב" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "הודעות" @@ -6165,12 +6208,7 @@ msgstr "" msgid "All groups" msgstr "" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "אין מסמך כזה." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6195,6 +6233,11 @@ msgstr "" msgid "Popular" msgstr "אנשים" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "אין מסמך כזה." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6399,47 +6442,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "לפני מספר שניות" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "לפני כדקה" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "לפני כ-%d דקות" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "לפני כשעה" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "לפני כ-%d שעות" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "לפני כיום" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "לפני כ-%d ימים" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "לפני כחודש" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "לפני כ-%d חודשים" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "לפני כשנה" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index fa2896d12a..882e9ac36b 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-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:08:59+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:30+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -744,7 +744,7 @@ msgid "Preview" msgstr "Přehlad" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Zničić" @@ -784,7 +784,7 @@ msgstr "Awatar zničeny." msgid "You already blocked that user." msgstr "Sy tutoho wužiwarja hižo zablokował." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Wužiwarja blokować" @@ -797,7 +797,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Ně" @@ -807,11 +807,11 @@ msgstr "Tutoho wužiwarja njeblokować" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Haj" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -859,9 +859,11 @@ msgstr "" msgid "Unblock this user" msgstr "" -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "skupiny na %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -930,7 +932,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -986,7 +988,7 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?" msgid "Do not delete this notice" msgstr "Tutu zdźělenku njewušmórnyć" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -1585,11 +1587,11 @@ msgstr "Wužiwar je hižo za skupinu zablokowany." msgid "User is not a member of group." msgstr "Wužiwar njeje čłon skupiny." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Wužiwarja za skupinu blokować" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1597,15 +1599,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Tutoho wužiwarja za tutu skupinu blokować" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Tutoho wužiwarja za tutu skupinu blokować" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1682,19 +1684,19 @@ msgstr "Lisćina wužiwarjow w tutej skupinje." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blokować" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej činić" @@ -1948,12 +1950,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Pósłać" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2253,15 +2257,19 @@ msgstr "Zdźělenka nima profil" msgid "%1$s's status on %2$s" msgstr "" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, php-format +msgid "content type %s not supported" msgstr "" -#: actions/oembed.php:160 -msgid "Only " -msgstr "Jenož " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." @@ -2941,7 +2949,7 @@ msgstr "Wodaj, njepłaćiwy přeprošenski kod." msgid "Registration successful" msgstr "Registrowanje wuspěšne" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrować" @@ -2993,20 +3001,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Dlěše mjeno, wosebje twoje \"woprawdźite\" mjeno" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Mój tekst a moje dataje steja k dispoziciji pod " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Attribution 3.0" - -#: actions/register.php:497 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3025,7 +3026,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3100,7 +3101,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować." msgid "You already repeated that notice." msgstr "Sy tutu zdźělenku hižo wospjetował." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Wospjetowany" @@ -4342,11 +4343,11 @@ msgstr "" msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4638,23 +4639,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "" @@ -4942,12 +4941,14 @@ msgstr "%s je skupinu %s wopušćił" msgid "Fullname: %s" msgstr "Dospołne mjeno: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Městno: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" @@ -5392,11 +5393,13 @@ msgstr "Přizjewjenje z wužiwarskim mjenom a hesłom" msgid "Sign up for a new account" msgstr "Nowe konto registrować" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Wobkrućenje e-mejloweje adresy" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5413,12 +5416,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5433,17 +5438,20 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Biografija: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5456,21 +5464,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS-wobkrućenje" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5486,12 +5504,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nowa priwatna powěsć wot %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5510,12 +5530,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) je twoju zdźělenku jako faworit přidał" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5536,12 +5558,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5554,6 +5586,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5716,23 +5760,23 @@ msgstr "Z" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Wospjetowany wot" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Na tutu zdźělenku wotmołwić" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Wotmołwić" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Zdźělenka wospjetowana" @@ -5838,11 +5882,7 @@ msgstr "" msgid "All groups" msgstr "Wšě skupiny" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Žane wróćenske argumenty." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -5866,6 +5906,10 @@ msgstr "" msgid "Popular" msgstr "Woblubowany" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Žane wróćenske argumenty." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Tutu zdźělenku wospjetować?" @@ -6056,47 +6100,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "před něšto sekundami" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "před %d mjeńšinami" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "před něhdźe %d hodźinami" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "před něhdźe %d dnjemi" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "před něhdźe %d měsacami" -#: lib/util.php:1064 +#: lib/util.php:1071 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 e449469434..79a0f893e8 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:03+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:33+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -766,7 +766,7 @@ msgid "Preview" msgstr "Previsualisation" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Deler" @@ -806,7 +806,7 @@ msgstr "Avatar delite." msgid "You already blocked that user." msgstr "Tu ha ja blocate iste usator." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Blocar usator" @@ -822,7 +822,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "No" @@ -832,11 +832,11 @@ msgstr "Non blocar iste usator" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Blocar iste usator" @@ -884,8 +884,10 @@ msgstr "Disblocar" msgid "Unblock this user" msgstr "Disblocar iste usator" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Publicar in " #: actions/confirmaddress.php:75 @@ -955,7 +957,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1016,7 +1018,7 @@ msgstr "Es tu secur de voler deler iste nota?" msgid "Do not delete this notice" msgstr "Non deler iste nota" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Deler iste nota" @@ -1629,11 +1631,11 @@ msgstr "Le usator es ja blocate del gruppo." msgid "User is not a member of group." msgstr "Le usator non es membro del gruppo." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Blocar usator del gruppo" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1644,15 +1646,15 @@ msgstr "" "essera removite del gruppo, non potera publicar messages, e non potera " "subscriber se al gruppo in le futuro." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Non blocar iste usator de iste gruppo" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Blocar iste usator de iste gruppo" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Error del base de datos al blocar le usator del gruppo." @@ -1731,19 +1733,19 @@ msgstr "Un lista de usatores in iste gruppo." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blocar" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Facer le usator administrator del gruppo" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Facer administrator" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Facer iste usator administrator" @@ -2024,12 +2026,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Inviar" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s te ha invitate a accompaniar le/la in %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2375,15 +2379,19 @@ msgstr "Le nota ha nulle profilo" msgid "%1$s's status on %2$s" msgstr "Le stato de %1$s in %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "typo de contento " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Solmente " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -3089,7 +3097,7 @@ msgstr "Pardono, le codice de invitation es invalide." msgid "Registration successful" msgstr "Registration succedite" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Crear conto" @@ -3145,22 +3153,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nomine plus longe, preferibilemente tu nomine \"real\"" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Mi texto e files es disponibile sub le licentia " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Attribution 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " excepte iste datos private: contrasigno, adresse de e-mail, adresse de " "messageria instantanee, numero de telephono." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3192,7 +3193,7 @@ msgstr "" "\n" "Gratias pro inscriber te, e nos spera que iste servicio te place." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3275,7 +3276,7 @@ msgstr "Tu non pote repeter tu proprie nota." msgid "You already repeated that notice." msgstr "Tu ha ja repetite iste nota." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Repetite" @@ -4613,11 +4614,11 @@ msgstr "Il te es prohibite publicar notas in iste sito." msgid "Problem saving notice." msgstr "Problema salveguardar nota." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4915,23 +4916,21 @@ msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Contento e datos sub copyright del contributores. Tote le derectos reservate." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Totes " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licentia." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Post" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Ante" @@ -5230,12 +5229,14 @@ msgstr "%s quitava le gruppo %s" msgid "Fullname: %s" msgstr "Nomine complete: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Loco: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Pagina personal: %s" @@ -5720,11 +5721,13 @@ msgstr "Aperir session con nomine de usator e contrasigno" msgid "Sign up for a new account" msgstr "Crear un nove conto" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Confirmation del adresse de e-mail" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5753,12 +5756,14 @@ msgstr "" "Gratias pro tu attention,\n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seque ora tu notas in %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5783,17 +5788,20 @@ msgstr "" "----\n" "Cambia tu adresse de e-mail o optiones de notification a %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Bio: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nove adresse de e-mail pro publicar in %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5814,21 +5822,31 @@ msgstr "" "Cordialmente,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Stato de %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Confirmation SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Iste numero de telephono attende confirmation." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s te ha pulsate" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5855,12 +5873,14 @@ msgstr "" "Con salutes cordial,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nove message private de %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5893,12 +5913,14 @@ msgstr "" "Con salutes cordial,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) ha addite tu nota como favorite" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5936,12 +5958,22 @@ msgstr "" "Cordialmente,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) ha inviate un nota a tu attention" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5954,18 +5986,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) inviava ante un momento un nota a tu attention (un 'responsa " -"@') in %2$s.\n" -"\n" -"Le nota es hic:\n" -"\n" -"%3$s\n" -"\n" -"Le texto:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6136,23 +6169,23 @@ msgstr "W" msgid "at" msgstr "a" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "in contexto" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Repetite per" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Responder a iste nota" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Nota repetite" @@ -6258,11 +6291,7 @@ msgstr "Media de cata die" msgid "All groups" msgstr "Tote le gruppos" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Nulle parametro return-to." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Methodo non implementate." @@ -6286,6 +6315,10 @@ msgstr "In evidentia" msgid "Popular" msgstr "Popular" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Nulle parametro return-to." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Repeter iste nota?" @@ -6476,47 +6509,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "alcun secundas retro" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "circa un minuta retro" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "circa %d minutas retro" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "circa un hora retro" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "circa %d horas retro" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "circa un die retro" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "circa %d dies retro" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "circa un mense retro" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "circa %d menses retro" -#: lib/util.php:1064 +#: lib/util.php:1071 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 532f83c61b..a99f7d058e 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-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:06+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:36+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -772,7 +772,7 @@ msgid "Preview" msgstr "Forsýn" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Eyða" @@ -815,7 +815,7 @@ msgstr "" msgid "You already blocked that user." msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Loka á notanda" @@ -828,7 +828,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Nei" @@ -839,11 +839,11 @@ msgstr "Opna á þennan notanda" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Já" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -891,9 +891,10 @@ msgstr "Opna" msgid "Unblock this user" msgstr "Opna á þennan notanda" -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Ljósmynd" #: actions/confirmaddress.php:75 @@ -968,7 +969,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -1027,7 +1028,7 @@ msgstr "Ertu viss um að þú viljir eyða þessu babli?" msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Eyða þessu babli" @@ -1666,11 +1667,11 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1678,15 +1679,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1763,19 +1764,19 @@ msgstr "Listi yfir notendur í þessum hóp." msgid "Admin" msgstr "Stjórnandi" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Loka" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2049,12 +2050,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Senda" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2402,15 +2405,19 @@ msgstr "Babl hefur enga persónulega síðu" msgid "%1$s's status on %2$s" msgstr "Staða %1$s á %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, php-format +msgid "content type %s not supported" msgstr "" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -3124,7 +3131,7 @@ msgstr "" msgid "Registration successful" msgstr "Nýskráning tókst" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Nýskrá" @@ -3178,20 +3185,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Lengra nafn, ákjósalegast að það sé \"rétta\" nafnið þitt" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Textinn og skrárnar mínar eru aðgengilegar undir " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:497 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3224,7 +3224,7 @@ msgstr "" "\n" "Takk fyrir að skrá þig og við vonum að þú njótir þjónustunnar." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3314,7 +3314,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." msgid "You already repeated that notice." msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "Í sviðsljósinu" @@ -4628,12 +4628,12 @@ msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4956,23 +4956,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Allt " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "leyfi." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Uppröðun" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Eftir" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Áður" @@ -5282,12 +5280,14 @@ msgstr "%s gekk úr hópnum %s" msgid "Fullname: %s" msgstr "Fullt nafn: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Staðsetning: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Heimasíða: %s" @@ -5741,11 +5741,13 @@ msgstr "Skráðu þig inn með notendanafni og lykilorði" msgid "Sign up for a new account" msgstr "Búðu til nýjan aðgang" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Staðfesting tölvupóstfangs" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5762,12 +5764,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s er að hlusta á bablið þitt á %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5782,19 +5786,22 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Lýsing: %s\n" "\n" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nýtt tölvupóstfang til að senda á %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5815,21 +5822,31 @@ msgstr "" "Með kærri kveðju,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Staða %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS staðfesting" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Býð eftir staðfestingu varðandi þetta símanúmer." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s ýtti við þér" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5845,12 +5862,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Ný persónuleg skilaboð frá %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5869,12 +5888,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s heldur upp á babl frá þér" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5895,12 +5916,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5913,6 +5944,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6081,24 +6124,24 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "Í sviðsljósinu" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Svara þessu babli" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Babl sent inn" @@ -6207,12 +6250,7 @@ msgstr "" msgid "All groups" msgstr "Allir hópar" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "Ekkert einkenni gefið upp." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6236,6 +6274,11 @@ msgstr "Í sviðsljósinu" msgid "Popular" msgstr "Vinsælt" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "Ekkert einkenni gefið upp." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6435,47 +6478,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "fyrir um %d mínútum síðan" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "fyrir um %d klukkutímum síðan" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "fyrir um einum degi síðan" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "fyrir um %d dögum síðan" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "fyrir um %d mánuðum síðan" -#: lib/util.php:1064 +#: lib/util.php:1071 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 7b57b1cbdd..2e850a167e 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:09+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:39+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -767,7 +767,7 @@ msgid "Preview" msgstr "Anteprima" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Elimina" @@ -807,7 +807,7 @@ msgstr "Immagine eliminata." msgid "You already blocked that user." msgstr "Hai già bloccato quell'utente." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Blocca utente" @@ -823,7 +823,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "No" @@ -833,11 +833,11 @@ msgstr "Non bloccare questo utente" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Sì" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Blocca questo utente" @@ -885,8 +885,10 @@ msgstr "Sblocca" msgid "Unblock this user" msgstr "Sblocca questo utente" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Invia a " #: actions/confirmaddress.php:75 @@ -956,7 +958,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1016,7 +1018,7 @@ msgstr "Vuoi eliminare questo messaggio?" msgid "Do not delete this notice" msgstr "Non eliminare il messaggio" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -1633,11 +1635,11 @@ msgstr "L'utente è già bloccato dal gruppo." msgid "User is not a member of group." msgstr "L'utente non fa parte del gruppo." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Blocca l'utente dal gruppo" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1648,15 +1650,15 @@ msgstr "" "dal gruppo, non potrà più inviare messaggi e non potrà più iscriversi al " "gruppo." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Non bloccare l'utente da questo gruppo" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Blocca l'utente da questo gruppo" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Errore del database nel bloccare l'utente dal gruppo." @@ -1735,19 +1737,19 @@ msgstr "Un elenco degli utenti in questo gruppo." msgid "Admin" msgstr "Amministra" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blocca" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Rende l'utente amministratore del gruppo" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Rendi amm." -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" @@ -2027,12 +2029,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Invia" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "Hai ricevuto un invito per seguire %1$s su %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2373,15 +2377,19 @@ msgstr "Il messaggio non ha un profilo" msgid "%1$s's status on %2$s" msgstr "Stato di %1$s su %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "tipo di contenuto " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Solo " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -3087,7 +3095,7 @@ msgstr "Codice di invito non valido." msgid "Registration successful" msgstr "Registrazione riuscita" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrati" @@ -3143,22 +3151,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "I miei testi e file sono disponibili nei termini della licenza " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Attribution 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " a eccezione di questi dati personali: password, indirizzo email, indirizzo " "messaggistica istantanea e numero di telefono." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3192,7 +3193,7 @@ msgstr "" "Grazie per la tua iscrizione e speriamo tu possa divertiti usando questo " "servizio." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3275,7 +3276,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi." msgid "You already repeated that notice." msgstr "Hai già ripetuto quel messaggio." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Ripetuti" @@ -4613,11 +4614,11 @@ msgstr "Ti è proibito inviare messaggi su questo sito." msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4917,23 +4918,21 @@ msgstr "" "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " "riservati." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Tutti " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licenza." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Paginazione" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Successivi" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Precedenti" @@ -5229,12 +5228,14 @@ msgstr "%1$s ha lasciato il gruppo %2$s" msgid "Fullname: %s" msgstr "Nome completo: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Posizione: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Pagina web: %s" @@ -5722,11 +5723,13 @@ msgstr "Accedi con nome utente e password" msgid "Sign up for a new account" msgstr "Iscriviti per un nuovo account" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Conferma indirizzo email" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5756,12 +5759,14 @@ msgstr "" "Grazie per il tuo tempo, \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5786,17 +5791,20 @@ msgstr "" "----\n" "Modifica il tuo indirizzo email o le opzioni di notifica presso %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Biografia: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nuovo indirizzo email per inviare messaggi a %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5817,21 +5825,31 @@ msgstr "" "Cordiali saluti,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "stato di %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Conferma SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "In attesa della conferma per questo numero di telefono." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s ti ha richiamato" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5858,12 +5876,14 @@ msgstr "" "Cordiali saluti,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nuovo messaggio privato da %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5896,12 +5916,14 @@ msgstr "" "Cordiali saluti,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5939,12 +5961,22 @@ msgstr "" "Cordiali saluti,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) ti ha inviato un messaggio" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5957,17 +5989,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) ti ha appena inviato un messaggio (una \"@-riposta\") su %2$s.\n" -"\n" -"Il messaggio si trova qui:\n" -"\n" -"\t%3$s\n" -"\n" -"E dice:\n" -"\n" -"\t%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6137,23 +6171,23 @@ msgstr "O" msgid "at" msgstr "presso" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "in una discussione" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Ripetuto da" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Rispondi" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Messaggio ripetuto" @@ -6259,11 +6293,7 @@ msgstr "Media giornaliera" msgid "All groups" msgstr "Tutti i gruppi" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Nessun argomento return-to." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Metodo non implementato" @@ -6287,6 +6317,10 @@ msgstr "In evidenza" msgid "Popular" msgstr "Famosi" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Nessun argomento return-to." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Ripetere questo messaggio?" @@ -6477,47 +6511,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderatore" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "pochi secondi fa" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "circa un minuto fa" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "circa %d minuti fa" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "circa un'ora fa" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "circa %d ore fa" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "circa un giorno fa" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "circa %d giorni fa" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "circa un mese fa" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "circa %d mesi fa" -#: lib/util.php:1064 +#: lib/util.php:1071 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 40fda1fa55..e51c465f50 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:13+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:42+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -761,7 +761,7 @@ msgid "Preview" msgstr "プレビュー" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "削除" @@ -802,7 +802,7 @@ msgstr "アバターが削除されました。" msgid "You already blocked that user." msgstr "そのユーザはすでにブロック済みです。" -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "ユーザをブロック" @@ -819,7 +819,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "No" @@ -829,11 +829,11 @@ msgstr "このユーザをアンブロックする" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "このユーザをブロックする" @@ -881,8 +881,10 @@ msgstr "アンブロック" msgid "Unblock this user" msgstr "このユーザをアンブロックする" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "投稿" #: actions/confirmaddress.php:75 @@ -952,7 +954,7 @@ msgstr "このアプリケーションのオーナーではありません。" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -1013,7 +1015,7 @@ msgstr "本当にこのつぶやきを削除しますか?" msgid "Do not delete this notice" msgstr "このつぶやきを削除できません。" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "このつぶやきを削除" @@ -1633,11 +1635,11 @@ msgstr "ユーザはすでにグループからブロックされています。 msgid "User is not a member of group." msgstr "ユーザはグループのメンバーではありません。" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "グループからユーザをブロック" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1647,15 +1649,15 @@ msgstr "" "本当にユーザ %1$s をグループ %2$s からブロックしますか? 彼らはグループから削" "除される、投稿できない、グループをフォローできなくなります。" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "このグループからこのユーザをブロックしない" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "このグループからこのユーザをブロック" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "グループからのブロックユーザのデータベースエラー" @@ -1734,19 +1736,19 @@ msgstr "このグループのユーザのリスト。" msgid "Admin" msgstr "管理者" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "ブロック" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "ユーザをグループの管理者にする" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "管理者にする" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "このユーザを管理者にする" @@ -2026,12 +2028,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "投稿" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s があなたを %2$s へ招待しました" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2372,15 +2376,19 @@ msgstr "つぶやきにはプロファイルはありません。" msgid "%1$s's status on %2$s" msgstr "%2$s における %1$ のステータス" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "内容種別 " -#: actions/oembed.php:160 -msgid "Only " -msgstr "だけ " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" @@ -3085,7 +3093,7 @@ msgstr "すみません、不正な招待コード。" msgid "Registration successful" msgstr "登録成功" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "登録" @@ -3140,20 +3148,13 @@ 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 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3186,7 +3187,7 @@ msgstr "" "参加してくださってありがとうございます。私たちはあなたがこのサービスを楽しん" "で使ってくれることを願っています。" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3270,7 +3271,7 @@ msgstr "自分のつぶやきは繰り返せません。" msgid "You already repeated that notice." msgstr "すでにそのつぶやきを繰り返しています。" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "繰り返された" @@ -4615,11 +4616,11 @@ msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止さ msgid "Problem saving notice." msgstr "つぶやきを保存する際に問題が発生しました。" -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4936,23 +4937,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "全て " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "ライセンス。" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "ページ化" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "<<後" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "前>>" @@ -5251,12 +5250,14 @@ msgstr "%s はグループ %s に残りました。" msgid "Fullname: %s" msgstr "フルネーム: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "場所: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "ホームページ: %s" @@ -5697,11 +5698,13 @@ msgstr "ユーザ名とパスワードでログイン" msgid "Sign up for a new account" msgstr "新しいアカウントでサインアップ" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "メールアドレス確認" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5730,12 +5733,14 @@ msgstr "" "ありがとうございます。\n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5760,17 +5765,20 @@ msgstr "" "----\n" "%8$s でメールアドレスか通知オプションを変えてください。\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "自己紹介: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "%s へ投稿のための新しいメールアドレス" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, fuzzy, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5791,21 +5799,31 @@ msgstr "" "忠実である、あなたのもの、\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s の状態" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS確認" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "この電話番号は確認待ちです。" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "あなたは %s に合図されています" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, fuzzy, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5832,12 +5850,14 @@ msgstr "" "敬具\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "%s からの新しいプライベートメッセージ" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, fuzzy, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5870,12 +5890,14 @@ msgstr "" "敬具\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5913,12 +5935,22 @@ msgstr "" "忠実である、あなたのもの、\n" "%6%s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) はあなた宛てにつぶやきを送りました" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5931,17 +5963,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) はあなた宛てに(@-返信) %2$s でつぶやきを送りました。\n" -"\n" -"つぶやきはここ:\n" -"\n" -"%3$s\n" -"\n" -"これを読む:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6119,23 +6153,23 @@ msgstr "西" msgid "at" msgstr "at" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "このつぶやきへ返信" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "返信" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "つぶやきを繰り返しました" @@ -6241,11 +6275,7 @@ msgstr "" msgid "All groups" msgstr "全てのグループ" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "return-to 引数がありません。" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "未実装のメソッド。" @@ -6269,6 +6299,10 @@ msgstr "フィーチャーされた" msgid "Popular" msgstr "人気" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "return-to 引数がありません。" + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "このつぶやきを繰り返しますか?" @@ -6463,47 +6497,47 @@ msgctxt "role" msgid "Moderator" msgstr "管理" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "数秒前" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "約 1 分前" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "約 %d 分前" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "約 1 時間前" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "約 %d 時間前" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "約 1 日前" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "約 %d 日前" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "約 1 ヵ月前" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "約 %d ヵ月前" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "約 1 年前" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 55d5c3645b..d16e80aa27 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:19+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:45+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -752,7 +752,7 @@ msgid "Preview" msgstr "미리보기" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "삭제" @@ -793,7 +793,7 @@ msgstr "아바타가 삭제되었습니다." msgid "You already blocked that user." msgstr "이미 차단된 이용자입니다." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "사용자를 차단합니다." @@ -808,7 +808,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "아니오" @@ -818,11 +818,11 @@ msgstr "이용자를 차단하지 않는다." #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "네, 맞습니다." -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -871,9 +871,10 @@ msgstr "차단해제" msgid "Unblock this user" msgstr "이 사용자를 차단해제합니다." -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "사진" #: actions/confirmaddress.php:75 @@ -947,7 +948,7 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -1009,7 +1010,7 @@ msgstr "정말로 통지를 삭제하시겠습니까?" msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -1642,12 +1643,12 @@ msgstr "회원이 당신을 차단해왔습니다." msgid "User is not a member of group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "사용자를 차단합니다." -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1655,17 +1656,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "이 그룹의 회원리스트" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "이 그룹의 회원리스트" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1745,21 +1746,21 @@ msgstr "이 그룹의 회원리스트" msgid "Admin" msgstr "관리자" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "차단하기" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 #, fuzzy msgid "Make user an admin of the group" msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 #, fuzzy msgid "Make Admin" msgstr "관리자" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "이 이용자를 관리자로 만듦" @@ -2029,12 +2030,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "보내기" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다." -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2372,16 +2375,19 @@ msgstr "통지에 프로필이 없습니다." msgid "%1$s's status on %2$s" msgstr "%1$s의 상태 (%2$s에서)" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "연결" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." @@ -3093,7 +3099,7 @@ msgstr "확인 코드 오류" msgid "Registration successful" msgstr "회원 가입이 성공적입니다." -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "회원가입" @@ -3147,21 +3153,13 @@ 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 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3194,7 +3192,7 @@ msgstr "" "\n" "다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3281,7 +3279,7 @@ msgstr "자신의 글은 재전송할 수 없습니다." msgid "You already repeated that notice." msgstr "당신은 이미 이 사용자를 차단하고 있습니다." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "재전송됨" @@ -4603,12 +4601,12 @@ msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었 msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4929,23 +4927,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "모든 것" +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "라이선스" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "페이지수" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "뒷 페이지" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "앞 페이지" @@ -5257,12 +5253,14 @@ msgstr "%s가 그룹%s를 떠났습니다." msgid "Fullname: %s" msgstr "전체이름: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "위치: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "홈페이지: %s" @@ -5714,11 +5712,13 @@ msgstr "사용자 이름과 비밀번호로 로그인" msgid "Sign up for a new account" msgstr "새 계정을 위한 회원가입" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "이메일 주소 확인서" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5735,12 +5735,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5759,19 +5761,22 @@ msgstr "" "\n" "그럼 이만,%4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "소개: %s\n" "\n" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "%s에 포스팅 할 새로운 이메일 주소" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5786,21 +5791,31 @@ msgstr "" "포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" "오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s 상태" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS 인증" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "이 전화 번호는 인증 대기중입니다." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s 사용자가 찔러 봤습니다." -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5816,12 +5831,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5840,12 +5857,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5866,12 +5885,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5884,6 +5913,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6052,25 +6093,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "내용이 없습니다!" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "생성" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "답장하기" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "게시글이 등록되었습니다." @@ -6180,12 +6221,7 @@ msgstr "" msgid "All groups" msgstr "모든 그룹" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "id 인자가 없습니다." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6209,6 +6245,11 @@ msgstr "피쳐링됨" msgid "Popular" msgstr "인기있는" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "id 인자가 없습니다." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6413,47 +6454,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "몇 초 전" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "1분 전" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "%d분 전" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "1시간 전" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "%d시간 전" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "하루 전" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "%d일 전" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "1달 전" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "%d달 전" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "1년 전" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 3e5167464d..d7094dc021 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:23+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:49+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -769,7 +769,7 @@ msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Бриши" @@ -809,7 +809,7 @@ msgstr "Аватарот е избришан." msgid "You already blocked that user." msgstr "Веќе го имате блокирано тој корисник." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Блокирај корисник" @@ -826,7 +826,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Не" @@ -836,11 +836,11 @@ msgstr "Не го блокирај корисников" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Блокирај го корисников" @@ -888,8 +888,10 @@ msgstr "Одблокирај" msgid "Unblock this user" msgstr "Одблокирај го овој корсник" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Објави во " #: actions/confirmaddress.php:75 @@ -959,7 +961,7 @@ msgstr "Не сте сопственик на овој програм." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1020,7 +1022,7 @@ msgstr "Дали сте сигурни дека сакате да ја избр msgid "Do not delete this notice" msgstr "Не ја бриши оваа забелешка" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Бриши ја оваа забелешка" @@ -1636,11 +1638,11 @@ msgstr "Корисникот е веќе блокиран од оваа груп msgid "User is not a member of group." msgstr "Корисникот не членува во групата." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Блокирај корисник од група" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1651,15 +1653,15 @@ msgstr "" "$s“? Корисникот ќе биде отстранет од групата, и во иднина нема да може да " "објавува во таа група и да се претплаќа на неа." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Не го блокирај овој корисник од оваа група" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Блокирај го овој корисник од оваа група" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" "Се појави грешка во базата наподатоци при блокирањето на корисникот од " @@ -1740,19 +1742,19 @@ msgstr "Листа на корисниците на овааг група." msgid "Admin" msgstr "Администратор" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Блокирај" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Направи го корисникот администратор на групата" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Направи го/ја администратор" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Направи го корисникот администратор" @@ -2034,12 +2036,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Испрати" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s ве покани да се придружите на %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2383,15 +2387,19 @@ msgstr "Забелешката нема профил" msgid "%1$s's status on %2$s" msgstr "%1$s статус на %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "тип на содржини " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Само " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -3102,7 +3110,7 @@ msgstr "Жалиме, неважечки код за поканата." msgid "Registration successful" msgstr "Регистрацијата е успешна" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрирај се" @@ -3158,22 +3166,15 @@ 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 "Creative Commons Наведи извор 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " освен овие приватни податоци: лозинка, е-пошта, IM-адреса и телефонски " "број." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3207,7 +3208,7 @@ msgstr "" "Ви благодариме што се зачленивте и Ви пожелуваме пријатни мигови со оваа " "служба." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3290,7 +3291,7 @@ msgstr "Не можете да повторувате сопствена заб msgid "You already repeated that notice." msgstr "Веќе ја имате повторено таа забелешка." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Повторено" @@ -4635,11 +4636,11 @@ msgstr "Забрането Ви е да објавувате забелешки msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4941,23 +4942,21 @@ msgstr "" "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " "права задржани." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Сите " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "лиценца." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Прелом на страници" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "По" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Пред" @@ -5251,12 +5250,14 @@ msgstr "%s ја напушти групата %s" msgid "Fullname: %s" msgstr "Име и презиме: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Локација: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" @@ -5741,11 +5742,13 @@ msgstr "Најава со корисничко име и лозинка" msgid "Sign up for a new account" msgstr "Создај нова сметка" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Потврдување на адресата" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5775,12 +5778,14 @@ msgstr "" "Ви благодариме за потрошеното време, \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сега ги следи Вашите забелешки на %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5806,17 +5811,20 @@ msgstr "" "Изменете си ја е-поштенската адреса или ги нагодувањата за известувања на %8" "$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Биографија: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Нова е-поштенска адреса за објавување на %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5837,21 +5845,31 @@ msgstr "" "Со искрена почит,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Статус на %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Потврда за СМС" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Очекувам потврда за овој телефонски број." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s Ве подбуцна" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5878,12 +5896,14 @@ msgstr "" "Со почит,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Нова приватна порака од %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5916,12 +5936,14 @@ msgstr "" "Со почит,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) додаде Ваша забелешка како омилена" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5959,12 +5981,22 @@ msgstr "" "Со искрена почит,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) Ви испрати забелешка што сака да ја прочитате" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5977,18 +6009,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) штотуку Ви испрати забелешка што сака да ја видите („@-" -"одговор“) на %2$s.\n" -"\n" -"Забелешката ќе ја најдете тука:\n" -"\n" -"%3$s\n" -"\n" -"Гласи:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6161,23 +6194,23 @@ msgstr "З" msgid "at" msgstr "во" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "во контекст" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Повторено од" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Одговори на забелешкава" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Одговор" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Забелешката е повторена" @@ -6283,11 +6316,7 @@ msgstr "Дневен просек" msgid "All groups" msgstr "Сите групи" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Нема return-to аргументи." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Неимплементиран метод." @@ -6311,6 +6340,10 @@ msgstr "Избрани" msgid "Popular" msgstr "Популарно" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Нема return-to аргументи." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Да ја повторам белешкава?" @@ -6501,47 +6534,47 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "пред неколку секунди" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "пред една минута" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "пред %d минути" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "пред еден час" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "пред %d часа" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "пред еден ден" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "пред %d денови" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "пред еден месец" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "пред %d месеца" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "пред една година" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index d9c7adf0a4..fdb079aff9 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:26+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27:52+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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -758,7 +758,7 @@ msgid "Preview" msgstr "Forhåndsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Slett" @@ -798,7 +798,7 @@ msgstr "Avatar slettet." msgid "You already blocked that user." msgstr "Du har allerede blokkert den brukeren." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Blokker brukeren" @@ -814,7 +814,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Nei" @@ -824,11 +824,11 @@ msgstr "Ikke blokker denne brukeren" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Blokker denne brukeren" @@ -876,8 +876,10 @@ msgstr "Opphev blokkering" msgid "Unblock this user" msgstr "Opphev blokkering av denne brukeren" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Post til " #: actions/confirmaddress.php:75 @@ -947,7 +949,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1008,7 +1010,7 @@ msgstr "Er du sikker på at du vil slette denne notisen?" msgid "Do not delete this notice" msgstr "Ikke slett denne notisen" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1619,11 +1621,11 @@ msgstr "Bruker er allerede blokkert fra gruppe." msgid "User is not a member of group." msgstr "Bruker er ikke et medlem av gruppa." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Blokker bruker fra gruppe" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1631,15 +1633,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Ikke blokker denne brukeren fra denne gruppa" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Blokker denne brukeren fra denne gruppen" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1715,19 +1717,19 @@ msgstr "En liste over brukerne i denne gruppen." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Gjør brukeren til en administrator for gruppen" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Gjør til administrator" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Gjør denne brukeren til administrator" @@ -1993,12 +1995,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Send" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har invitert deg til %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2326,15 +2330,19 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "innholdstype " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Bare " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Ikke et støttet dataformat." @@ -3025,7 +3033,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -3078,22 +3086,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Lengre navn, helst ditt \"ekte\" navn" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Teksten og filene mine er tilgjengelig under " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Navngivelse 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " utenom disse private dataene: passord, e-postadresse, lynmeldingsadresse " "og telefonnummer." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3126,7 +3127,7 @@ msgstr "" "\n" "Takk for at du registrerte deg og vi håper du kommer til å like tjenesten." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3205,7 +3206,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "Du er allerede logget inn!" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Gjentatt" @@ -4497,11 +4498,11 @@ msgstr "" msgid "Problem saving notice." msgstr "Problem ved lagring av notis." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problem ved lagring av gruppeinnboks." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4800,23 +4801,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Alle " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "lisens." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Etter" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Før" @@ -5110,12 +5109,14 @@ msgstr "%s forlot gruppen %s" msgid "Fullname: %s" msgstr "Fullt navn: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Posisjon: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Hjemmeside: %s" @@ -5561,11 +5562,13 @@ msgstr "Logg inn med brukernavn og passord" msgid "Sign up for a new account" msgstr "Registrer deg for en ny konto" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Bekreftelse av e-postadresse" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5594,12 +5597,14 @@ msgstr "" "Takk for tiden din,\n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lytter nå til dine notiser på %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5624,17 +5629,20 @@ msgstr "" "----\n" "Endre e-postadressen din eller dine varslingsvalg på %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Biografi: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Ny e-postadresse for posting til %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5655,21 +5663,31 @@ msgstr "" "Vennlig hilsen,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS-bekreftelse" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Venter på bekreftelse for dette telefonnummeret." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Du har blitt knuffet av %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5696,12 +5714,14 @@ msgstr "" "Med vennlig hilsen,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Ny privat melding fra %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5734,12 +5754,14 @@ msgstr "" "Med vennlig hilsen,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s /@%s) la din notis til som en favoritt" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5776,12 +5798,22 @@ msgstr "" "Vennlig hilsen,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) sendte en notis for din oppmerksomhet" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5794,18 +5826,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) sendte deg akkurat en notis for din oppmerksomhet (et '@-svar') " -"på %2$s.\n" -"\n" -"Notisen er her:\n" -"\n" -"%3$s\n" -"\n" -"Den lyder:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -5972,23 +6005,23 @@ msgstr "V" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Repetert av" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Notis repetert" @@ -6094,11 +6127,7 @@ msgstr "" msgid "All groups" msgstr "Alle grupper" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Ikke-implementert metode." @@ -6123,6 +6152,10 @@ msgstr "" msgid "Popular" msgstr "" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "" + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Repeter denne notisen?" @@ -6318,47 +6351,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "noen få sekunder siden" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "omtrent %d minutter siden" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "omtrent én time siden" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "omtrent %d timer siden" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "omtrent én dag siden" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "omtrent %d dager siden" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "omtrent én måned siden" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "omtrent %d måneder siden" -#: lib/util.php:1064 +#: lib/util.php:1071 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 93638f0720..d5303d5eba 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:32+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27: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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -778,7 +778,7 @@ msgid "Preview" msgstr "Voorvertoning" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Verwijderen" @@ -819,7 +819,7 @@ msgstr "De avatar is verwijderd." msgid "You already blocked that user." msgstr "U hebt deze gebruiker reeds geblokkeerd." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Gebruiker blokkeren" @@ -835,7 +835,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Nee" @@ -845,11 +845,11 @@ msgstr "Gebruiker niet blokkeren" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Deze gebruiker blokkeren" @@ -897,8 +897,10 @@ msgstr "Deblokkeer" msgid "Unblock this user" msgstr "Deblokkeer deze gebruiker." -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Verzenden naar " #: actions/confirmaddress.php:75 @@ -968,7 +970,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1029,7 +1031,7 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -1650,11 +1652,11 @@ msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." msgid "User is not a member of group." msgstr "De gebruiker is geen lid van de groep." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Gebruiker toegang tot de groep blokkeren" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1665,15 +1667,15 @@ msgstr "" "gebruiker wordt dan uit de groep verwijderd, kan er geen berichten meer " "plaatsen en kan zich in de toekomst ook niet meer op de groep abonneren." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Deze gebruiker niet de toegang tot deze groep ontzeggen" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" "Er is een databasefout opgetreden bij het uitsluiten van de gebruiker van de " @@ -1754,19 +1756,19 @@ msgstr "Ledenlijst van deze groep" msgid "Admin" msgstr "Beheerder" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blokkeren" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Deze gebruiker groepsbeheerder maken" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Beheerder maken" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Deze gebruiker beheerder maken" @@ -2050,12 +2052,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Verzenden" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s heeft u uitgenodigd voor %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2402,15 +2406,19 @@ msgstr "Mededeling heeft geen profiel" msgid "%1$s's status on %2$s" msgstr "Status van %1$s op %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "inhoudstype " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Alleen " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -3125,7 +3133,7 @@ msgstr "Sorry. De uitnodigingscode is ongeldig." msgid "Registration successful" msgstr "De registratie is voltooid" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registreren" @@ -3179,22 +3187,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Een langere naam, mogelijk uw echte naam" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Mijn teksten en bestanden zijn beschikbaar onder " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Naamsvermelding 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " "telefoonnummer." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3228,7 +3229,7 @@ msgstr "" "Dank u wel voor het registreren en we hopen dat deze dienst u biedt wat u " "ervan verwacht." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3311,7 +3312,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen." msgid "You already repeated that notice." msgstr "U hent die mededeling al herhaald." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Herhaald" @@ -4671,13 +4672,13 @@ msgstr "" msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " "groep." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4979,23 +4980,21 @@ msgstr "" "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " "gebruikers. Alle rechten voorbehouden." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Alle " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licentie." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Later" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Eerder" @@ -5290,12 +5289,14 @@ msgstr "%s heeft de groep %s verlaten" msgid "Fullname: %s" msgstr "Volledige naam: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Locatie: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Thuispagina: %s" @@ -5788,11 +5789,13 @@ msgstr "Aanmelden met gebruikersnaam en wachtwoord" msgid "Sign up for a new account" msgstr "Nieuwe gebruiker aanmaken" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "E-mailadresbevestiging" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5822,12 +5825,14 @@ msgstr "" "Dank u wel voor uw tijd.\n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s volgt nu uw berichten %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5852,17 +5857,20 @@ msgstr "" "----\n" "Wijzig uw e-mailadres of instellingen op %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Beschrijving: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nieuw e-mailadres om e-mail te versturen aan %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5883,21 +5891,31 @@ msgstr "" "Met vriendelijke groet,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS-bevestiging" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Er wordt gewacht op bevestiging van dit telefoonnummer." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s heeft u gepord" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5925,12 +5943,14 @@ msgstr "" "Met vriendelijke groet,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "U hebt een nieuw privébericht van %s." -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5964,12 +5984,14 @@ msgstr "" "Met vriendelijke groet,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -6007,12 +6029,22 @@ msgstr "" "Met vriendelijke groet,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) heeft u een mededeling gestuurd" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -6025,17 +6057,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) heeft u een bericht gezonden (een antwoord met \"@\") op %2$s.\n" -"\n" -"De mededeling staat hier:\n" -"\n" -"%3$s\n" -"\n" -"De inhoud is:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6207,23 +6241,23 @@ msgstr "W" msgid "at" msgstr "op" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "in context" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Herhaald door" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Op deze mededeling antwoorden" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Antwoorden" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Mededeling herhaald" @@ -6330,11 +6364,7 @@ msgstr "Dagelijks gemiddelde" msgid "All groups" msgstr "Alle groepen" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Er zijn geen \"terug naar\"-parameters opgegeven." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Methode niet geïmplementeerd." @@ -6358,6 +6388,10 @@ msgstr "Uitgelicht" msgid "Popular" msgstr "Populair" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Er zijn geen \"terug naar\"-parameters opgegeven." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Deze mededeling herhalen?" @@ -6548,47 +6582,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "een paar seconden geleden" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minuten geleden" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "ongeveer een uur geleden" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur geleden" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "ongeveer een dag geleden" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dagen geleden" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "ongeveer een maand geleden" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maanden geleden" -#: lib/util.php:1064 +#: lib/util.php:1071 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 70073c52b2..c25317b394 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:29+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:27: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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -776,7 +776,7 @@ msgid "Preview" msgstr "Forhandsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Slett" @@ -819,7 +819,7 @@ msgstr "Lasta opp brukarbilete." msgid "You already blocked that user." msgstr "Du har allereie blokkert denne brukaren." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Blokker brukaren" @@ -832,7 +832,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Nei" @@ -843,11 +843,11 @@ msgstr "Lås opp brukaren" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Jau" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -897,9 +897,10 @@ msgstr "Lås opp" msgid "Unblock this user" msgstr "Lås opp brukaren" -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Bilete" #: actions/confirmaddress.php:75 @@ -974,7 +975,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -1037,7 +1038,7 @@ msgstr "Sikker på at du vil sletta notisen?" msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1686,12 +1687,12 @@ msgstr "Brukar har blokkert deg." msgid "User is not a member of group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "Blokker brukaren" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1699,17 +1700,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "Ei liste over brukarane i denne gruppa." -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "Ei liste over brukarane i denne gruppa." -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1791,21 +1792,21 @@ msgstr "Ei liste over brukarane i denne gruppa." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 #, fuzzy msgid "Make user an admin of the group" msgstr "Du må være administrator for å redigere gruppa" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 #, fuzzy msgid "Make Admin" msgstr "Administrator" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2078,12 +2079,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Send" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har invitert deg til %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2425,16 +2428,19 @@ msgstr "Notisen har ingen profil" msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "Kopla til" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -3149,7 +3155,7 @@ msgstr "Feil med stadfestingskode." msgid "Registration successful" msgstr "Registreringa gikk bra" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrér" @@ -3204,23 +3210,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Lengre namn, fortrinnsvis ditt «ekte» namn" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Teksten og filene mine er tilgjengeleg under " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:497 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " "telefonnummer." -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3252,7 +3250,7 @@ msgstr "" "\n" "Takk for at du blei med, og vi håpar du vil lika tenesta!" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3341,7 +3339,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." msgid "You already repeated that notice." msgstr "Du har allereie blokkert denne brukaren." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "Lag" @@ -4670,12 +4668,12 @@ msgstr "Du kan ikkje lengre legge inn notisar på denne sida." msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4998,23 +4996,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Alle" +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "lisens." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "« Etter" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Før »" @@ -5326,12 +5322,14 @@ msgstr "%s forlot %s gruppa" msgid "Fullname: %s" msgstr "Fullt namn: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Stad: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Heimeside: %s" @@ -5786,11 +5784,13 @@ msgstr "Log inn med brukarnamn og passord." msgid "Sign up for a new account" msgstr "Opprett ny konto" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Stadfesting av epostadresse" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5807,12 +5807,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s høyrer no på notisane dine på %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5833,19 +5835,22 @@ msgstr "" "Beste helsing,\n" "%4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Ny epostadresse for å oppdatera %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5865,21 +5870,31 @@ msgstr "" "\n" "Helsing frå %4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS bekreftelse" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Ventar på godkjenning for dette telefonnummeret." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Du har blitt dulta av %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5895,12 +5910,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Ny privat melding fra %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5919,12 +5936,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s la til di melding som ein favoritt" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5945,12 +5964,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5963,6 +5992,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6131,25 +6172,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "Ingen innhald." -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "Lag" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Melding lagra" @@ -6259,12 +6300,7 @@ msgstr "" msgid "All groups" msgstr "Alle gruppar" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "Manglar argumentet ID." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6288,6 +6324,11 @@ msgstr "Framheva" msgid "Popular" msgstr "Populære" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "Manglar argumentet ID." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6492,47 +6533,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "eit par sekund sidan" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "~%d minutt sidan" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "omtrent ein time sidan" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "~%d timar sidan" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "omtrent ein dag sidan" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "~%d dagar sidan" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "omtrent ein månad sidan" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "~%d månadar sidan" -#: lib/util.php:1064 +#: lib/util.php:1071 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 e464140945..097f8ae446 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:36+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:02+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ 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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -766,7 +766,7 @@ msgid "Preview" msgstr "Podgląd" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Usuń" @@ -806,7 +806,7 @@ msgstr "Usunięto awatar." msgid "You already blocked that user." msgstr "Użytkownik jest już zablokowany." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Zablokuj użytkownika" @@ -822,7 +822,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Nie" @@ -832,11 +832,11 @@ msgstr "Nie blokuj tego użytkownika" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Tak" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokuj tego użytkownika" @@ -884,8 +884,10 @@ msgstr "Odblokuj" msgid "Unblock this user" msgstr "Odblokuj tego użytkownika" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Wyślij do " #: actions/confirmaddress.php:75 @@ -955,7 +957,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1015,7 +1017,7 @@ msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -1627,11 +1629,11 @@ msgstr "Użytkownik został już zablokował w grupie." msgid "User is not a member of group." msgstr "Użytkownik nie jest członkiem grupy." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Zablokuj użytkownika w grupie" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1642,15 +1644,15 @@ msgstr "" "Zostanie usunięty z grupy, nie będzie mógł wysyłać wpisów i subskrybować " "grupy w przyszłości." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Nie blokuj tego użytkownika w tej grupie" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Zablokuj tego użytkownika w tej grupie" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Błąd bazy danych podczas blokowania użytkownika w grupie." @@ -1725,19 +1727,19 @@ msgstr "Lista użytkowników znajdujących się w tej grupie." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Zablokuj" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Uczyń administratorem" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" @@ -2017,12 +2019,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Wyślij" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s zapraszają cię, abyś dołączył do nich w %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2363,15 +2367,19 @@ msgstr "Wpis nie posiada profilu" msgid "%1$s's status on %2$s" msgstr "Stan użytkownika %1$s na %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "typ zawartości " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Tylko " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." @@ -3077,7 +3085,7 @@ msgstr "Nieprawidłowy kod zaproszenia." msgid "Registration successful" msgstr "Rejestracja powiodła się" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Zarejestruj się" @@ -3133,22 +3141,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" imię i nazwisko" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Moje teksty i pliki są dostępne na " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Uznanie autorstwa 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i " "numer telefonu." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3181,7 +3182,7 @@ msgstr "" "Dziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi " "sprawi ci przyjemność." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3264,7 +3265,7 @@ msgstr "Nie można powtórzyć własnego wpisu." msgid "You already repeated that notice." msgstr "Już powtórzono ten wpis." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Powtórzono" @@ -4607,11 +4608,11 @@ msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4912,23 +4913,21 @@ msgstr "" "Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie " "prawa zastrzeżone." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Wszystko " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licencja." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Paginacja" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Później" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Wcześniej" @@ -5224,12 +5223,14 @@ msgstr "Użytkownik %1$s opuścił grupę %2$s" msgid "Fullname: %s" msgstr "Imię i nazwisko: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Położenie: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Strona domowa: %s" @@ -5719,11 +5720,13 @@ msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła" msgid "Sign up for a new account" msgstr "Załóż nowe konto" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Potwierdzenie adresu e-mail" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5753,12 +5756,14 @@ msgstr "" "Dziękujemy za twój czas, \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "Użytkownik %1$s obserwuje teraz twoje wpisy na %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5783,17 +5788,20 @@ msgstr "" "----\n" "Zmień adres e-mail lub opcje powiadamiania na %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "O mnie: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Nowy adres e-mail do wysyłania do %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5814,21 +5822,31 @@ msgstr "" "Z poważaniem,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Stan użytkownika %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Potwierdzenie SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Oczekiwanie na potwierdzenie tego numeru telefonu." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Zostałeś szturchnięty przez %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5855,12 +5873,14 @@ msgstr "" "Z poważaniem,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nowa prywatna wiadomość od użytkownika %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5893,12 +5913,14 @@ msgstr "" "Z poważaniem,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "Użytkownik %s (@%s) dodał twój wpis jako ulubiony" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5936,12 +5958,22 @@ msgstr "" "Z poważaniem,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "Użytkownik %s (@%s) wysłał wpis wymagający twojej uwagi" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5954,18 +5986,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"Użytkownik %1$s (@%9$s) właśnie wysłał wpis wymagający twojej uwagi " -"(odpowiedź \"@\") na %2$s.\n" -"\n" -"Wpis znajduje się tutaj:\n" -"\n" -"\t%3$s\n" -"\n" -"Tekst wpisu:\n" -"\n" -"\t%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6133,23 +6166,23 @@ msgstr "Zachód" msgid "at" msgstr "w" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "w rozmowie" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Powtórzone przez" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Odpowiedz" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Powtórzono wpis" @@ -6255,11 +6288,7 @@ msgstr "Dziennie średnio" msgid "All groups" msgstr "Wszystkie grupy" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Brak parametrów powrotu." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Niezaimplementowana metoda." @@ -6283,6 +6312,10 @@ msgstr "Znane" msgid "Popular" msgstr "Popularne" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Brak parametrów powrotu." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Powtórzyć ten wpis?" @@ -6474,47 +6507,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "kilka sekund temu" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "około minutę temu" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "około %d minut temu" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "około godzinę temu" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "około %d godzin temu" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "blisko dzień temu" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "około %d dni temu" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "około miesiąc temu" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "około %d miesięcy temu" -#: lib/util.php:1064 +#: lib/util.php:1071 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 7647967b00..84c5d8eff9 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:39+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:06+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -765,7 +765,7 @@ msgid "Preview" msgstr "Antevisão" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Apagar" @@ -806,7 +806,7 @@ msgstr "Avatar apagado." msgid "You already blocked that user." msgstr "Já bloqueou esse utilizador." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear utilizador" @@ -822,7 +822,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Não" @@ -832,11 +832,11 @@ msgstr "Não bloquear este utilizador" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -884,8 +884,10 @@ msgstr "Desbloquear" msgid "Unblock this user" msgstr "Desbloquear este utilizador" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Publicar em " #: actions/confirmaddress.php:75 @@ -959,7 +961,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1023,7 +1025,7 @@ msgstr "Tem a certeza de que quer apagar esta nota?" msgid "Do not delete this notice" msgstr "Não apagar esta nota" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Apagar esta nota" @@ -1655,11 +1657,11 @@ msgstr "Acesso do utilizador ao grupo já foi bloqueado." msgid "User is not a member of group." msgstr "Utilizador não é membro do grupo." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Bloquear acesso do utilizador ao grupo" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1670,15 +1672,15 @@ msgstr "" "\"%2$s\"? Ele será removido do grupo, impossibilitado de publicar e " "impossibilitado de subscrever o grupo no futuro." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Não bloquear acesso deste utilizador a este grupo" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Bloquear acesso deste utilizador a este grupo" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Erro na base de dados ao bloquear acesso do utilizador ao grupo." @@ -1757,19 +1759,19 @@ msgstr "Uma lista dos utilizadores neste grupo." msgid "Admin" msgstr "Gestor" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Tornar utilizador o gestor do grupo" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Tornar Gestor" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" @@ -2051,12 +2053,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s convidou-o a juntar-se a ele no %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2403,15 +2407,19 @@ msgstr "Nota não tem perfil" msgid "%1$s's status on %2$s" msgstr "Estado de %1$s em %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "tipo de conteúdo " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Apenas " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -3126,7 +3134,7 @@ msgstr "Desculpe, código de convite inválido." msgid "Registration successful" msgstr "Registo efectuado" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registar" @@ -3181,22 +3189,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nome mais longo, de preferência o seu nome \"verdadeiro\"" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Os meus textos e ficheiros são disponibilizados nos termos da " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Atribuição 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " excepto estes dados privados: senha, endereço de correio electrónico, " "endereço de mensageiro instantâneo, número de telefone." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3229,7 +3230,7 @@ msgstr "" "\n" "Obrigado por se ter registado e esperamos que se divirta usando este serviço." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3312,7 +3313,7 @@ msgstr "Não pode repetir a sua própria nota." msgid "You already repeated that notice." msgstr "Já repetiu essa nota." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Repetida" @@ -4670,12 +4671,12 @@ msgstr "Está proibido de publicar notas neste site." msgid "Problem saving notice." msgstr "Problema na gravação da nota." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema na gravação da nota." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4992,23 +4993,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Tudo " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licença." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Posteriores" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Anteriores" @@ -5311,12 +5310,14 @@ msgstr "%s deixou o grupo %s" msgid "Fullname: %s" msgstr "Nome completo: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Localidade: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Página pessoal: %s" @@ -5800,11 +5801,13 @@ msgstr "Iniciar sessão com um nome de utilizador e senha" msgid "Sign up for a new account" msgstr "Registar uma conta nova" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Confirmação do endereço electrónico" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5833,12 +5836,14 @@ msgstr "" "Obrigado pelo tempo que dedicou, \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está agora a ouvir as suas notas em %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5864,17 +5869,20 @@ msgstr "" "Altere o seu endereço de correio electrónico ou as opções de notificação em %" "8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Bio: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Novo endereço electrónico para publicar no site %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5895,21 +5903,31 @@ msgstr "" "Melhores cumprimentos,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Estado de %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Confirmação SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "A aguardar confirmação deste número de telefone." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s envia-lhe um toque" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5936,12 +5954,14 @@ msgstr "" "Graciosamente,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nova mensagem privada de %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5974,12 +5994,14 @@ msgstr "" "Profusos cumprimentos,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) adicionou a sua nota às favoritas." -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -6016,12 +6038,22 @@ msgstr "" "Sinceramente,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) enviou uma nota à sua atenção" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -6034,18 +6066,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) acaba de enviar uma nota à sua atenção (uma '@-resposta') em %2" -"$s.\n" -"\n" -"a nota está aqui:\n" -"\n" -"%3$s\n" -"\n" -"E diz:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6216,23 +6249,23 @@ msgstr "O" msgid "at" msgstr "coords." -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Responder a esta nota" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Nota repetida" @@ -6338,11 +6371,7 @@ msgstr "" msgid "All groups" msgstr "Todos os grupos" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Sem argumentos return-to." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Método não implementado." @@ -6366,6 +6395,10 @@ msgstr "Destaques" msgid "Popular" msgstr "Populares" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Sem argumentos return-to." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Repetir esta nota?" @@ -6559,47 +6592,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderar" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "há alguns segundos" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "há cerca de um minuto" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "há cerca de %d minutos" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "há cerca de uma hora" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "há cerca de %d horas" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "há cerca de um dia" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "há cerca de %d dias" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "há cerca de um mês" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "há cerca de %d meses" -#: lib/util.php:1064 +#: lib/util.php:1071 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 f509d5082b..7099211787 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:43+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:14+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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -772,7 +772,7 @@ msgid "Preview" msgstr "Visualização" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Excluir" @@ -812,7 +812,7 @@ msgstr "O avatar foi excluído." msgid "You already blocked that user." msgstr "Você já bloqueou esse usuário." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear usuário" @@ -829,7 +829,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Não" @@ -839,11 +839,11 @@ msgstr "Não bloquear este usuário" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuário" @@ -891,8 +891,10 @@ msgstr "Desbloquear" msgid "Unblock this user" msgstr "Desbloquear este usuário" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Enviar para " #: actions/confirmaddress.php:75 @@ -962,7 +964,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1023,7 +1025,7 @@ msgstr "Tem certeza que deseja excluir esta mensagem?" msgid "Do not delete this notice" msgstr "Não excluir esta mensagem." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -1641,11 +1643,11 @@ msgstr "O usuário já está bloqueado no grupo." msgid "User is not a member of group." msgstr "O usuário não é um membro do grupo" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Bloquear o usuário no grupo" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1656,15 +1658,15 @@ msgstr "" "será removido do grupo e impossibilitado de publicar e de se juntar ao grupo " "futuramente." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Não bloquear este usuário neste grupo" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Bloquear este usuário neste grupo" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" "Ocorreu um erro no banco de dados ao tentar bloquear o usuário no grupo." @@ -1744,19 +1746,19 @@ msgstr "Uma lista dos usuários deste grupo." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Tornar o usuário um administrador do grupo" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Tornar administrador" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Torna este usuário um administrador" @@ -2038,12 +2040,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Enviar" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s convidou você para se juntar a %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2391,15 +2395,19 @@ msgstr "A mensagem não está associada a nenhum perfil" msgid "%1$s's status on %2$s" msgstr "Mensagem de %1$s no %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "tipo de conteúdo " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Apenas " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -3111,7 +3119,7 @@ msgstr "Desculpe, mas o código do convite é inválido." msgid "Registration successful" msgstr "Registro realizado com sucesso" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar-se" @@ -3166,22 +3174,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo, de preferência seu nome \"real\"" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Meus textos e arquivos estão disponíveis sob " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Attribution 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " exceto estes dados particulares: senha, endereço de e-mail, endereço de MI " "e número de telefone." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3214,7 +3215,7 @@ msgstr "" "\n" "Obrigado por se registrar e esperamos que você aproveite o serviço." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3296,7 +3297,7 @@ msgstr "Você não pode repetir sua própria mensagem." msgid "You already repeated that notice." msgstr "Você já repetiu essa mensagem." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Repetida" @@ -4637,11 +4638,11 @@ msgstr "Você está proibido de publicar mensagens neste site." msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4940,23 +4941,21 @@ msgstr "" "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " "reservados." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Todas " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licença." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Próximo" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Anterior" @@ -5254,12 +5253,14 @@ msgstr "%s deixou o grupo %s" msgid "Fullname: %s" msgstr "Nome completo: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Localização: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Site: %s" @@ -5747,11 +5748,13 @@ msgstr "Autentique-se com um nome de usuário e uma senha" msgid "Sign up for a new account" msgstr "Cadastre-se para uma nova conta" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Confirmação do endereço de e-mail" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5780,12 +5783,14 @@ msgstr "" "Obrigado pela sua atenção, \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s agora está acompanhando suas mensagens no %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5810,17 +5815,20 @@ msgstr "" "----\n" "Altere seu endereço de e-mail e suas opções de notificação em %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Descrição: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Novo endereço de e-mail para publicar no %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5841,21 +5849,31 @@ msgstr "" "Atenciosamente,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "Mensagem de %s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Confirmação de SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Aguardando a confirmação deste número de telefone." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Você teve a atenção chamada por %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5882,12 +5900,14 @@ msgstr "" "Atenciosamente,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nova mensagem particular de %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5920,12 +5940,14 @@ msgstr "" "Atenciosamente,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) marcou sua mensagem como favorita" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5962,12 +5984,22 @@ msgstr "" "Atenciosamente,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) enviou uma mensagem citando você" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5980,18 +6012,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) acabou de enviar uma mensagem citando você ('@usuário') no %2" -"$s.\n" -"\n" -"A mensagem está aqui:\n" -"\n" -"\t%3$s\n" -"\n" -"Está escrito:\n" -"\n" -"\t%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6164,23 +6197,23 @@ msgstr "O" msgid "at" msgstr "em" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Mensagem repetida" @@ -6286,11 +6319,7 @@ msgstr "Média diária" msgid "All groups" msgstr "Todos os grupos" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Sem argumentos return-to." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Método não implementado." @@ -6314,6 +6343,10 @@ msgstr "Em destaque" msgid "Popular" msgstr "Popular" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Sem argumentos return-to." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Repetir esta mensagem?" @@ -6504,47 +6537,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "alguns segundos atrás" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "cerca de %d minutos atrás" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "cerca de %d horas atrás" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "cerca de 1 dia atrás" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "cerca de %d dias atrás" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "cerca de 1 mês atrás" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "cerca de %d meses atrás" -#: lib/util.php:1064 +#: lib/util.php:1071 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 b1c52551fb..b4fdd52810 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-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:49+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:18+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -769,7 +769,7 @@ msgid "Preview" msgstr "Просмотр" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Удалить" @@ -809,7 +809,7 @@ msgstr "Аватара удалена." msgid "You already blocked that user." msgstr "Вы уже заблокировали этого пользователя." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Заблокировать пользователя." @@ -825,7 +825,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Нет" @@ -835,11 +835,11 @@ msgstr "Не блокировать этого пользователя" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Заблокировать пользователя." @@ -887,8 +887,10 @@ msgstr "Разблокировать" msgid "Unblock this user" msgstr "Разблокировать пользователя." -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Отправить в " #: actions/confirmaddress.php:75 @@ -958,7 +960,7 @@ msgstr "Вы не являетесь владельцем этого прило #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." @@ -1019,7 +1021,7 @@ msgstr "Вы уверены, что хотите удалить эту запи msgid "Do not delete this notice" msgstr "Не удалять эту запись" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Удалить эту запись" @@ -1642,11 +1644,11 @@ msgstr "Пользователь уже заблокирован из групп msgid "User is not a member of group." msgstr "Пользователь не является членом этой группы." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Заблокировать пользователя из группы." -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1657,15 +1659,15 @@ msgstr "" "Пользователь будет удалён из группы без возможности отправлять и " "подписываться на группу в будущем." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Не блокировать этого пользователя из этой группы" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Заблокировать этого пользователя из этой группы" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Ошибка базы данных при блокировании пользователя из группы." @@ -1744,19 +1746,19 @@ msgstr "Список пользователей, являющихся члена msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Блокировать" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Сделать пользователя администратором группы" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Сделать администратором" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Сделать этого пользователя администратором" @@ -2038,12 +2040,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Отправить" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s пригласил вас присоединиться к нему на %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2382,15 +2386,19 @@ msgstr "Запись без профиля" msgid "%1$s's status on %2$s" msgstr "Статус %1$s на %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "тип содержимого " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Только " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." @@ -3093,7 +3101,7 @@ msgstr "Извините, неверный пригласительный код msgid "Registration successful" msgstr "Регистрация успешна!" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрация" @@ -3152,22 +3160,15 @@ 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 "Creative Commons Attribution 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" ", за исключением моей личной информации: пароля, почты, мессенджера и номера " "телефона." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3201,7 +3202,7 @@ msgstr "" "Спасибо за то, что присоединились к нам, надеемся, что вы получите " "удовольствие от использования данного сервиса!" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3280,7 +3281,7 @@ msgstr "Вы не можете повторить собственную зап msgid "You already repeated that notice." msgstr "Вы уже повторили эту запись." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Повторено" @@ -4624,11 +4625,11 @@ msgstr "Вам запрещено поститься на этом сайте ( msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4929,23 +4930,21 @@ msgstr "" "Авторские права на содержание и данные принадлежат разработчикам. Все права " "защищены." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "license." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Разбиение на страницы" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Сюда" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Туда" @@ -5241,12 +5240,14 @@ msgstr "%1$s покинул группу %2$s" msgid "Fullname: %s" msgstr "Полное имя: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Месторасположение: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Домашняя страница: %s" @@ -5732,11 +5733,13 @@ msgstr "Войти с вашим ником и паролем." msgid "Sign up for a new account" msgstr "Создать новый аккаунт" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Подтверждение электронного адреса" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5766,12 +5769,14 @@ msgstr "" "Благодарим за потраченное время, \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s теперь следит за вашими записями на %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5796,17 +5801,20 @@ msgstr "" "----\n" "Измените email-адрес и настройки уведомлений на %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Биография: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Новый электронный адрес для постинга %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5827,21 +5835,31 @@ msgstr "" "Искренне Ваш,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s статус" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Подтверждение СМС" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "В ожидании подтверждения данного номера телефона." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Вас «подтолкнул» пользователь %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5868,12 +5886,14 @@ msgstr "" "С уважением,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Новое приватное сообщение от %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5906,12 +5926,14 @@ msgstr "" "С уважением,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) добавил вашу запись в число своих любимых" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5948,12 +5970,22 @@ msgstr "" "С уважением,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) отправил запись для вашего внимания" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5966,18 +5998,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) только что отправил запись для вашего внимания («@-ответ») на %2" -"$s.\n" -"\n" -"Текст записи:\n" -"\n" -"%3$s\n" -"\n" -"Оно содержит:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6147,23 +6180,23 @@ msgstr "з. д." msgid "at" msgstr "на" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "в контексте" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Запись повторена" @@ -6269,11 +6302,7 @@ msgstr "Среднесуточная" msgid "All groups" msgstr "Все группы" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Нет аргумента return-to." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Нереализованный метод." @@ -6297,6 +6326,10 @@ msgstr "Особые" msgid "Popular" msgstr "Популярное" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Нет аргумента return-to." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Повторить эту запись?" @@ -6487,47 +6520,47 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "пару секунд назад" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "около минуты назад" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "около %d минут(ы) назад" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "около часа назад" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "около %d часа(ов) назад" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "около дня назад" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "около %d дня(ей) назад" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "около месяца назад" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "около %d месяца(ев) назад" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "около года назад" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 53b593d232..baef4d7bee 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-08 23:24+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -739,7 +739,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "" @@ -779,7 +779,7 @@ msgstr "" msgid "You already blocked that user." msgstr "" -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "" @@ -792,7 +792,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "" @@ -802,11 +802,11 @@ msgstr "" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "" @@ -854,8 +854,10 @@ msgstr "" msgid "Unblock this user" msgstr "" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, php-format +msgid "Post to %s" msgstr "" #: actions/confirmaddress.php:75 @@ -925,7 +927,7 @@ msgstr "" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -981,7 +983,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "" @@ -1579,11 +1581,11 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1591,15 +1593,15 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1674,19 +1676,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -1938,12 +1940,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2243,15 +2247,19 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, php-format +msgid "content type %s not supported" msgstr "" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -2930,7 +2938,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2982,20 +2990,13 @@ 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 +#, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3014,7 +3015,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3089,7 +3090,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "" @@ -4331,11 +4332,11 @@ msgstr "" msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4627,23 +4628,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "" @@ -4931,12 +4930,14 @@ msgstr "" msgid "Fullname: %s" msgstr "" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" @@ -5375,11 +5376,13 @@ msgstr "" msgid "Sign up for a new account" msgstr "" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5396,12 +5399,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5416,17 +5421,20 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5439,21 +5447,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5469,12 +5487,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5493,12 +5513,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5519,12 +5541,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5537,6 +5569,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5699,23 +5743,23 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "" @@ -5821,11 +5865,7 @@ msgstr "" msgid "All groups" msgstr "" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -5849,6 +5889,10 @@ msgstr "" msgid "Popular" msgstr "" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "" + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "" @@ -6039,47 +6083,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 1686d62f49..e736c8a186 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:52+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:21+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -757,7 +757,7 @@ msgid "Preview" msgstr "Förhandsgranska" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Ta bort" @@ -797,7 +797,7 @@ msgstr "Avatar borttagen." msgid "You already blocked that user." msgstr "Du har redan blockerat denna användare." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Blockera användare" @@ -813,7 +813,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Nej" @@ -823,11 +823,11 @@ msgstr "Blockera inte denna användare" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Blockera denna användare" @@ -876,8 +876,10 @@ msgstr "Häv blockering" msgid "Unblock this user" msgstr "Häv blockering av denna användare" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Posta till " #: actions/confirmaddress.php:75 @@ -947,7 +949,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1008,7 +1010,7 @@ msgstr "Är du säker på att du vill ta bort denna notis?" msgid "Do not delete this notice" msgstr "Ta inte bort denna notis" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -1622,11 +1624,11 @@ msgstr "Användaren är redan blockerad från grupp." msgid "User is not a member of group." msgstr "Användare är inte en gruppmedlem." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Blockera användare från grupp" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1637,15 +1639,15 @@ msgstr "" "\"? De kommer bli borttagna från gruppen, inte kunna skriva till och inte " "kunna prenumerera på gruppen i framtiden." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Blockera inte denna användare från denna grupp" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Blockera denna användare från denna grupp" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Databasfel vid blockering av användare från grupp." @@ -1723,19 +1725,19 @@ msgstr "En lista av användarna i denna grupp." msgid "Admin" msgstr "Administratör" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Blockera" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Gör användare till en administratör för gruppen" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Gör till administratör" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Gör denna användare till administratör" @@ -2016,12 +2018,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Skicka" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har bjudit in dig att gå med dem på %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2362,15 +2366,19 @@ msgstr "Notisen har ingen profil" msgid "%1$s's status on %2$s" msgstr "%1$ss status den %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "innehållstyp " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Bara " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -3076,7 +3084,7 @@ msgstr "Tyvärr, ogiltig inbjudningskod." msgid "Registration successful" msgstr "Registreringen genomförd" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrera" @@ -3134,22 +3142,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Längre namn, förslagsvis ditt \"verkliga\" namn" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Min text och mina filer är tillgängliga under " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "Creative Commons Erkännande 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" "med undantag av den här privata datan: lösenord, e-postadress, IM-adress, " "telefonnummer." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3182,7 +3183,7 @@ msgstr "" "Tack för att du anmält dig och vi hoppas att du kommer tycka om att använda " "denna tjänst." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3265,7 +3266,7 @@ msgstr "Du kan inte upprepa din egna notis." msgid "You already repeated that notice." msgstr "Du har redan upprepat denna notis." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Upprepad" @@ -4602,11 +4603,11 @@ msgstr "Du är utestängd från att posta notiser på denna webbplats." msgid "Problem saving notice." msgstr "Problem med att spara notis." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4904,23 +4905,21 @@ msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Alla " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "licens." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Numrering av sidor" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Senare" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Tidigare" @@ -5215,12 +5214,14 @@ msgstr "%s lämnade grupp %s" msgid "Fullname: %s" msgstr "Fullständigt namn: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Plats: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Hemsida: %s" @@ -5702,11 +5703,13 @@ msgstr "Logga in med ett användarnamn och lösenord" msgid "Sign up for a new account" msgstr "Registrera dig för ett nytt konto" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "E-postadressbekräftelse" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5735,12 +5738,14 @@ msgstr "" "Tack för din tid, \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lyssnar nu på dina notiser på %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5765,17 +5770,20 @@ msgstr "" "----\n" "Ändra din e-postadress eller notiferingsinställningar på %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Biografi: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Ny e-postadress för att skicka till %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5796,21 +5804,31 @@ msgstr "" "Med vänliga hälsningar,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS-bekräftelse" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Väntar bekräftelse för detta telefonnummer." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Du har blivit knuffad av %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5837,12 +5855,14 @@ msgstr "" "Med vänliga hälsningar,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Nytt privat meddelande från %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5875,12 +5895,14 @@ msgstr "" "Med vänliga hälsningar,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) lade till din notis som en favorit" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5917,12 +5939,22 @@ msgstr "" "Med vänliga hälsningar,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) skickade en notis för din uppmärksamhet" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5935,18 +5967,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) skickade precis en notis för din uppmärksamhet (ett '@-svar') " -"på %2$s.\n" -"\n" -"Notisen är här:\n" -"\n" -"%3$s\n" -"\n" -"Den lyder:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6117,23 +6150,23 @@ msgstr "V" msgid "at" msgstr "på" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "i sammanhang" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Upprepad av" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Svara på denna notis" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Notis upprepad" @@ -6239,11 +6272,7 @@ msgstr "Dagligt genomsnitt" msgid "All groups" msgstr "Alla grupper" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Inga \"return-to\"-argument." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Inte implementerad metod." @@ -6267,6 +6296,10 @@ msgstr "Profilerade" msgid "Popular" msgstr "Populärt" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Inga \"return-to\"-argument." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Upprepa denna notis?" @@ -6457,47 +6490,47 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "ett par sekunder sedan" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "för nån minut sedan" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "för %d minuter sedan" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "för en timma sedan" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "för %d timmar sedan" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "för en dag sedan" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "för %d dagar sedan" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "för en månad sedan" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "för %d månader sedan" -#: lib/util.php:1064 +#: lib/util.php:1071 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 838c40a7d0..37ffdc223b 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:56+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:26+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -753,7 +753,7 @@ msgid "Preview" msgstr "మునుజూపు" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "తొలగించు" @@ -794,7 +794,7 @@ msgstr "అవతారాన్ని తొలగించాం." msgid "You already blocked that user." msgstr "మీరు ఇప్పటికే ఆ వాడుకరిని నిరోధించారు." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "వాడుకరిని నిరోధించు" @@ -809,7 +809,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "కాదు" @@ -819,11 +819,11 @@ msgstr "ఈ వాడుకరిని నిరోధించకు" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "అవును" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -873,9 +873,11 @@ msgstr "" msgid "Unblock this user" msgstr "అటువంటి వాడుకరి లేరు." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "%s పై గుంపులు" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -944,7 +946,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1002,7 +1004,7 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించకు" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -1607,11 +1609,11 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున msgid "User is not a member of group." msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1621,15 +1623,15 @@ msgstr "" "నిజంగానే వాడుకరి \"%1$s\"ని \"%2$s\" గుంపు నుండి నిరోధించాలనుకుంటున్నారా? వారిని గుంపు నుండి " "తొలగిస్తాం, ఇక భవిష్యత్తులో వారు గుంపులో ప్రచురించలేరు, మరియు గుంపుకి చందాచేరలేరు." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "ఈ వాడుకరిని ఈ గుంపు నుండి నిరోధించకు" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1707,19 +1709,19 @@ msgstr "ఈ గుంపులో వాడుకరులు జాబితా msgid "Admin" msgstr "నిర్వాహకులు" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "నిరోధించు" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "నిర్వాహకున్ని చేయి" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" @@ -1980,12 +1982,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "పంపించు" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%2$sలో చేరమని %1$s మిమ్మల్ని ఆహ్వానించారు" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2295,15 +2299,19 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "%2$sలో %1$s యొక్క స్థితి" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "విషయ రకం " -#: actions/oembed.php:160 -msgid "Only " -msgstr "మాత్రమే " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -3002,7 +3010,7 @@ msgstr "క్షమించండి, తప్పు ఆహ్వాన స msgid "Registration successful" msgstr "నమోదు విజయవంతం" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "నమోదు" @@ -3054,20 +3062,13 @@ 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 "క్రియేటివ్ కామన్స్ అట్రిబ్యూషన్ 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr " ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, మరియు ఫోన్ నంబర్." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3098,7 +3099,7 @@ msgstr "" "\n" "నమోదుచేసుకున్నందుకు కృతజ్ఞతలు మరియు ఈ సేవని ఉపయోగిస్తూ మీరు ఆనందిస్తారని మేం ఆశిస్తున్నాం." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3180,7 +3181,7 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి msgid "You already repeated that notice." msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "సృష్టితం" @@ -4455,12 +4456,12 @@ msgstr "ఈ సైటులో నోటీసులు రాయడం ను msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4767,23 +4768,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "అన్నీ " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "లైసెన్సు." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "పేజీకరణ" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "తర్వాత" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "ఇంతక్రితం" @@ -5087,12 +5086,14 @@ msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు msgid "Fullname: %s" msgstr "పూర్తిపేరు: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "ప్రాంతం: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "హోంపేజీ: %s" @@ -5540,11 +5541,13 @@ msgstr "వాడుకరిపేరు మరియు సంకేతపద msgid "Sign up for a new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5561,12 +5564,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5591,17 +5596,20 @@ msgstr "" "----\n" "మీ ఈమెయిలు చిరునామాని లేదా గమనింపుల ఎంపికలను %8$s వద్ద మార్చుకోండి\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "స్వపరిచయం: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5614,21 +5622,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s స్థితి" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS నిర్ధారణ" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "ఈ ఫోను నంబరు యొక్క నిర్ధారణకై వేచివుంది." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5644,12 +5662,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "%s నుండి కొత్త అంతరంగిక సందేశం" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5682,12 +5702,14 @@ msgstr "" "శుభాకాంక్షలతో,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5708,12 +5730,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) మీకు ఒక నోటీసుని పంపించారు" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5726,17 +5758,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) %2$sలో మీకు ('@-స్పందన') ఒక నోటీసుని పంపించారు .\n" -"\n" -"ఆ నోటీసు ఇక్కడ:\n" -"\n" -"%3$s\n" -"\n" -"ఇదీ పాఠ్యం:\n" -"\n" -"%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -5904,24 +5938,24 @@ msgstr "ప" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "సందర్భంలో" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "సృష్టితం" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "ఈ నోటీసుపై స్పందించండి" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "స్పందించండి" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "నోటీసుని తొలగించాం." @@ -6030,12 +6064,7 @@ msgstr "" msgid "All groups" msgstr "అన్ని గుంపులు" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "అటువంటి పత్రమేమీ లేదు." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6059,6 +6088,11 @@ msgstr "విశేషం" msgid "Popular" msgstr "ప్రాచుర్యం" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "అటువంటి పత్రమేమీ లేదు." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "ఈ నోటీసుని పునరావృతించాలా?" @@ -6255,47 +6289,47 @@ msgctxt "role" msgid "Moderator" msgstr "సమన్వయకర్త" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "%d నిమిషాల క్రితం" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "%d గంటల క్రితం" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "%d రోజుల క్రితం" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "ఓ నెల క్రితం" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "%d నెలల క్రితం" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 73571c19bf..de350a0dc5 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:09:59+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:29+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -780,7 +780,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "" @@ -823,7 +823,7 @@ msgstr "Avatar güncellendi." msgid "You already blocked that user." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 #, fuzzy msgid "Block user" msgstr "Böyle bir kullanıcı yok." @@ -837,7 +837,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "" @@ -848,11 +848,11 @@ msgstr "Böyle bir kullanıcı yok." #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." @@ -904,9 +904,11 @@ msgstr "" msgid "Unblock this user" msgstr "Böyle bir kullanıcı yok." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "%s için cevaplar" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -980,7 +982,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:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1040,7 +1042,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "Böyle bir durum mesajı yok." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "" @@ -1678,12 +1680,12 @@ msgstr "Kullanıcının profili yok." msgid "User is not a member of group." msgstr "Bize o profili yollamadınız" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "Böyle bir kullanıcı yok." -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1691,17 +1693,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "Böyle bir kullanıcı yok." -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1782,19 +1784,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2067,12 +2069,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Gönder" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2387,16 +2391,19 @@ msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "Bağlan" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -3112,7 +3119,7 @@ msgstr "Onay kodu hatası." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Kayıt" @@ -3165,23 +3172,15 @@ msgid "Longer name, preferably your \"real\" name" msgstr "" #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Durum mesajlarim ve dosyalarim şu lisans ile korunmaktadır: " - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:497 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " "numarası." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3200,7 +3199,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3280,7 +3279,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "You already repeated that notice." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "Yarat" @@ -4585,12 +4584,12 @@ msgstr "" msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4913,24 +4912,22 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 #, fuzzy msgid "After" msgstr "« Sonra" -#: lib/action.php:1171 +#: lib/action.php:1173 #, fuzzy msgid "Before" msgstr "Önce »" @@ -5241,12 +5238,14 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "Fullname: %s" msgstr "Tam İsim" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" @@ -5708,11 +5707,13 @@ msgstr "Geçersiz kullanıcı adı veya parola." msgid "Sign up for a new account" msgstr "Yeni hesap oluştur" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Eposta adresi onayı" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5729,12 +5730,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5755,17 +5758,20 @@ msgstr "" "Kendisini durumsuz bırakmayın!,\n" "%4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "Hakkında" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5778,21 +5784,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s durum" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5808,12 +5824,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5832,12 +5850,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5858,12 +5878,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5876,6 +5906,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6044,26 +6086,26 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "İçerik yok!" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "Yarat" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 #, fuzzy msgid "Reply" msgstr "cevapla" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Durum mesajları" @@ -6172,12 +6214,7 @@ msgstr "" msgid "All groups" msgstr "" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "Böyle bir belge yok." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6202,6 +6239,11 @@ msgstr "" msgid "Popular" msgstr "Kişi Arama" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "Böyle bir belge yok." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6404,47 +6446,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "birkaç saniye önce" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "yaklaşık %d dakika önce" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "yaklaşık %d saat önce" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "yaklaşık bir gün önce" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "yaklaşık %d gün önce" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "yaklaşık bir ay önce" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "yaklaşık %d ay önce" -#: lib/util.php:1064 +#: lib/util.php:1071 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 c03a801f63..094ea46f40 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-04-06 22:53+0000\n" -"PO-Revision-Date: 2010-04-08 23:10:03+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:32+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -767,7 +767,7 @@ msgid "Preview" msgstr "Перегляд" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "Видалити" @@ -807,7 +807,7 @@ msgstr "Аватару видалено." msgid "You already blocked that user." msgstr "Цього користувача вже заблоковано." -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 msgid "Block user" msgstr "Блокувати користувача" @@ -823,7 +823,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Ні" @@ -833,11 +833,11 @@ msgstr "Не блокувати цього користувача" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Так" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 msgid "Block this user" msgstr "Блокувати користувача" @@ -885,8 +885,10 @@ msgstr "Розблокувати" msgid "Unblock this user" msgstr "Розблокувати цього користувача" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "Написати " #: actions/confirmaddress.php:75 @@ -956,7 +958,7 @@ msgstr "Ви не є власником цього додатку." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1015,7 +1017,7 @@ msgstr "Ви впевненні, що бажаєте видалити цей д msgid "Do not delete this notice" msgstr "Не видаляти цей допис" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "Видалити допис" @@ -1626,11 +1628,11 @@ msgstr "Користувача заблоковано в цій групі." msgid "User is not a member of group." msgstr "Користувач не є учасником групи." -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 msgid "Block user from group" msgstr "Блокувати користувача в групі" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1641,15 +1643,15 @@ msgstr "" "позбавлено членства в групі, він не зможе сюди писати, і не зможе вступити " "до групи знов." -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "Do not block this user from this group" msgstr "Не блокувати користувача в групі" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 msgid "Block this user from this group" msgstr "Блокувати користувача цієї групи" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "Виникла помилка при блокуванні користувача в цій групі." @@ -1728,19 +1730,19 @@ msgstr "Список учасників цієї групи." msgid "Admin" msgstr "Адмін" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "Блок" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "Надати користувачеві права адміністратора" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "Зробити адміном" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "Надати цьому користувачеві права адміністратора" @@ -2022,12 +2024,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Надіслати" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s запросив(ла) Вас приєднатися до нього(неї) на %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2371,15 +2375,19 @@ msgstr "Допис не має профілю" msgid "%1$s's status on %2$s" msgstr "%1$s має статус на %2$s" -#: actions/oembed.php:157 -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "тип змісту " -#: actions/oembed.php:160 -msgid "Only " -msgstr "Лише " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" +msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." @@ -3087,7 +3095,7 @@ msgstr "Даруйте, помилка у коді запрошення." msgid "Registration successful" msgstr "Реєстрація успішна" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Реєстрація" @@ -3143,22 +3151,15 @@ 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 "Кріейтів Комонс Авторство 3.0" - -#: actions/register.php:497 +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" " окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " "номер." -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3191,7 +3192,7 @@ msgstr "" "Дякуємо, що зареєструвались у нас, і, сподіваємось, Вам сподобається наш " "сервіс." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3272,7 +3273,7 @@ msgstr "Ви не можете повторювати свої власні до msgid "You already repeated that notice." msgstr "Ви вже повторили цей допис." -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 msgid "Repeated" msgstr "Повторено" @@ -4609,11 +4610,11 @@ msgstr "Вам заборонено надсилати дописи до цьо msgid "Problem saving notice." msgstr "Проблема при збереженні допису." -#: classes/Notice.php:943 +#: classes/Notice.php:964 msgid "Problem saving group inbox." msgstr "Проблема при збереженні вхідних дописів для групи." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4911,23 +4912,21 @@ msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторські права на зміст і дані належать розробникам. Всі права захищено." +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "Всі " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "ліцензія." - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "Нумерація сторінок" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "Вперед" -#: lib/action.php:1171 +#: lib/action.php:1173 msgid "Before" msgstr "Назад" @@ -5223,12 +5222,14 @@ msgstr "%1$s залишив групу %2$s" msgid "Fullname: %s" msgstr "Повне ім’я: %s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Розташування: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Веб-сторінка: %s" @@ -5711,11 +5712,13 @@ msgstr "Увійти використовуючи ім’я та пароль" msgid "Sign up for a new account" msgstr "Зареєструвати новий акаунт" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Підтвердження електронної адреси" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5744,12 +5747,14 @@ msgstr "" "Дякуємо за Ваш час \n" "%s\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s тепер слідкує за Вашими дописами на %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5774,17 +5779,20 @@ msgstr "" "----\n" "Змінити електронну адресу або умови сповіщення — %8$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, php-format msgid "Bio: %s" msgstr "Про себе: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Нова електронна адреса для надсилання повідомлень на %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5805,21 +5813,31 @@ msgstr "" "Щиро Ваші,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s статус" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Підтвердження СМС" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Очікування підтвердження телефонного номера." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "Вас спробував «розштовхати» %s" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5846,12 +5864,14 @@ msgstr "" "З найкращими побажаннями,\n" "%4$s\n" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Нове приватне повідомлення від %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5884,12 +5904,14 @@ msgstr "" "З найкращими побажаннями,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) додав(ла) Ваш допис обраних" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5926,12 +5948,22 @@ msgstr "" "Щиро Ваші,\n" "%6$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) пропонує до Вашої уваги наступний допис" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5944,18 +5976,19 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) пропонує до Вашої уваги наступний допис (це '@-відповідь') %2" -"$s.\n" -"\n" -"Допис тут:\n" -"\n" -"\t%3$s\n" -"\n" -"Текст:\n" -"\n" -"\t%4$s\n" -"\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6126,23 +6159,23 @@ msgstr "Зах." msgid "at" msgstr "в" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 msgid "in context" msgstr "в контексті" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "Відповісти на цей допис" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Відповісти" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 msgid "Notice repeated" msgstr "Допис повторили" @@ -6248,11 +6281,7 @@ msgstr "Середньодобове" msgid "All groups" msgstr "Всі групи" -#: lib/profileformaction.php:123 -msgid "No return-to arguments." -msgstr "Немає аргументів return-to." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "Метод не виконується." @@ -6276,6 +6305,10 @@ msgstr "Постаті" msgid "Popular" msgstr "Популярне" +#: lib/redirectingaction.php:94 +msgid "No return-to arguments." +msgstr "Немає аргументів return-to." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Повторити цей допис?" @@ -6466,47 +6499,47 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "мить тому" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "хвилину тому" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "близько %d хвилин тому" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "годину тому" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "близько %d годин тому" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "день тому" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "близько %d днів тому" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "місяць тому" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "близько %d місяців тому" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "рік тому" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 7092994ed8..de8d34c6da 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:10:07+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:35+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -783,7 +783,7 @@ msgid "Preview" msgstr "Xem trước" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 #, fuzzy msgid "Delete" msgstr "Xóa tin nhắn" @@ -828,7 +828,7 @@ msgstr "Hình đại diện đã được cập nhật." msgid "You already blocked that user." msgstr "Bạn đã theo những người này:" -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 #, fuzzy msgid "Block user" msgstr "Ban user" @@ -842,7 +842,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "Không" @@ -853,11 +853,11 @@ msgstr "Bỏ chặn người dùng này" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "Có" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Ban user" @@ -908,9 +908,11 @@ msgstr "Bỏ chặn" msgid "Unblock this user" msgstr "Bỏ chặn người dùng này" -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "Mã nhóm" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -984,7 +986,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:1219 +#: lib/action.php:1221 #, 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." @@ -1046,7 +1048,7 @@ msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" msgid "Do not delete this notice" msgstr "Không thể xóa tin nhắn này." -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 #, fuzzy msgid "Delete this notice" msgstr "Xóa tin nhắn" @@ -1718,12 +1720,12 @@ msgstr "Người dùng không có thông tin." msgid "User is not a member of group." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "Ban user" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1731,17 +1733,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "Ban user" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1825,20 +1827,20 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 #, fuzzy msgid "Make user an admin of the group" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 #, fuzzy msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" @@ -2120,12 +2122,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "Gửi" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s moi ban tham gia vao %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2476,16 +2480,19 @@ msgstr "Tin nhắn không có hồ sơ cá nhân" msgid "%1$s's status on %2$s" msgstr "Trạng thái của %1$s vào %2$s" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "Kết nối" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "Không hỗ trợ định dạng dữ liệu này." @@ -3212,7 +3219,7 @@ msgstr "Lỗi xảy ra với mã xác nhận." msgid "Registration successful" msgstr "Đăng ký thành công" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "Đăng ký" @@ -3267,21 +3274,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Họ tên đầy đủ của bạn, tốt nhất là tên thật của bạn." #: actions/register.php:494 -msgid "My text and files are available under " -msgstr "Ghi chú và các file của tôi đã có ở phía dưới" - -#: actions/register.php:496 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:497 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3312,7 +3311,7 @@ msgstr "" "\n" "Cảm ơn bạn đã đăng ký để là thành viên và rất mong bạn sẽ thích dịch vụ này." -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3399,7 +3398,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho msgid "You already repeated that notice." msgstr "Bạn đã theo những người này:" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "Tạo" @@ -4738,12 +4737,12 @@ msgstr "" msgid "Problem saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%s (%s)" @@ -5070,24 +5069,22 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 #, fuzzy msgid "After" msgstr "Sau" -#: lib/action.php:1171 +#: lib/action.php:1173 #, fuzzy msgid "Before" msgstr "Trước" @@ -5403,12 +5400,14 @@ msgstr "%s và nhóm" msgid "Fullname: %s" msgstr "Tên đầy đủ" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, fuzzy, php-format msgid "Location: %s" msgstr "Thành phố: %s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, fuzzy, php-format msgid "Homepage: %s" msgstr "Trang chủ hoặc Blog: %s" @@ -5880,11 +5879,13 @@ msgstr "Sai tên đăng nhập hoặc mật khẩu." msgid "Sign up for a new account" msgstr "Tạo tài khoản mới" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "Xac nhan dia chi email" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, fuzzy, php-format msgid "" "Hey, %s.\n" @@ -5916,12 +5917,14 @@ msgstr "" "%4$s\n" "\n" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s đang theo dõi lưu ý của bạn trên %2$s." -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5942,17 +5945,20 @@ msgstr "" "Người bạn trung thành của bạn,\n" "%4$s.\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "Thành phố: %s" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "Dia chi email moi de gui tin nhan den %s" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5973,21 +5979,31 @@ msgstr "" "Chúc sức khỏe,\n" "%4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, fuzzy, php-format msgid "%s status" msgstr "Trạng thái của %1$s vào %2$s" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "Xác nhận SMS" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Đó không phải là số điện thoại của bạn." + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -6003,12 +6019,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "Bạn có tin nhắn riêng từ %s" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -6041,12 +6059,14 @@ msgstr "" "Chúc sức khỏe,\n" "%5$s\n" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -6080,12 +6100,22 @@ msgstr "" "Chúc sức khỏe,\n" "%5$s\n" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -6098,6 +6128,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6270,26 +6312,26 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "Không có nội dung!" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "Tạo" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 #, fuzzy msgid "Reply to this notice" msgstr "Trả lời tin nhắn này" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "Trả lời" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "Tin đã gửi" @@ -6403,12 +6445,7 @@ msgstr "" msgid "All groups" msgstr "Nhóm" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "Không có tài liệu nào." - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6435,6 +6472,11 @@ msgstr "" msgid "Popular" msgstr "Tên tài khoản" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "Không có tài liệu nào." + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6646,47 +6688,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "vài giây trước" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "1 phút trước" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "%d phút trước" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "1 giờ trước" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "%d giờ trước" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "1 ngày trước" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "%d ngày trước" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "1 tháng trước" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "%d tháng trước" -#: lib/util.php:1064 +#: lib/util.php:1071 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 19e4232412..178ce7de00 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:10:11+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:39+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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -778,7 +778,7 @@ msgid "Preview" msgstr "预览" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 #, fuzzy msgid "Delete" msgstr "删除" @@ -822,7 +822,7 @@ msgstr "头像已更新。" msgid "You already blocked that user." msgstr "您已成功阻止该用户:" -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 #, fuzzy msgid "Block user" msgstr "阻止用户" @@ -836,7 +836,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "否" @@ -847,11 +847,11 @@ msgstr "取消阻止次用户" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "是" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "阻止该用户" @@ -903,9 +903,10 @@ msgstr "取消阻止" msgid "Unblock this user" msgstr "取消阻止次用户" -#: actions/bookmarklet.php:50 -#, fuzzy -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" msgstr "相片" #: actions/confirmaddress.php:75 @@ -980,7 +981,7 @@ msgstr "您未告知此个人信息" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 #, fuzzy msgid "There was a problem with your session token." msgstr "会话标识有问题,请重试。" @@ -1042,7 +1043,7 @@ msgstr "确定要删除这条消息吗?" msgid "Do not delete this notice" msgstr "无法删除通告。" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 #, fuzzy msgid "Delete this notice" msgstr "删除通告" @@ -1696,12 +1697,12 @@ msgstr "用户没有个人信息。" msgid "User is not a member of group." msgstr "您未告知此个人信息" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "阻止用户" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1709,17 +1710,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "该组成员列表。" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "该组成员列表。" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1802,21 +1803,21 @@ msgstr "该组成员列表。" msgid "Admin" msgstr "admin管理员" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "阻止" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 #, fuzzy msgid "Make user an admin of the group" msgstr "只有admin才能编辑这个组" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 #, fuzzy msgid "Make Admin" msgstr "admin管理员" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2084,12 +2085,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "发送" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s 邀请您加入 %2$s" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2426,16 +2429,19 @@ msgstr "通告没有关联个人信息" msgid "%1$s's status on %2$s" msgstr "%1$s 的 %2$s 状态" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "连接" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "不支持的数据格式。" @@ -3150,7 +3156,7 @@ msgstr "验证码出错。" msgid "Registration successful" msgstr "注册成功。" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "注册" @@ -3202,21 +3208,13 @@ 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 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" -#: actions/register.php:538 +#: actions/register.php:542 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3247,7 +3245,7 @@ msgstr "" "\n" "感谢您的注册,希望您喜欢这个服务。" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3333,7 +3331,7 @@ msgstr "您必须同意此授权方可注册。" msgid "You already repeated that notice." msgstr "您已成功阻止该用户:" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "创建" @@ -4665,12 +4663,12 @@ msgstr "在这个网站你被禁止发布消息。" msgid "Problem saving notice." msgstr "保存通告时出错。" -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "保存通告时出错。" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4998,24 +4996,22 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " -msgstr "全部" +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "注册证" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "分页" -#: lib/action.php:1163 +#: lib/action.php:1165 #, fuzzy msgid "After" msgstr "« 之后" -#: lib/action.php:1171 +#: lib/action.php:1173 #, fuzzy msgid "Before" msgstr "之前 »" @@ -5328,12 +5324,14 @@ msgstr "%s 离开群 %s" msgid "Fullname: %s" msgstr "全名:%s" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "位置:%s" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "主页:%s" @@ -5797,11 +5795,13 @@ msgstr "输入用户名和密码以登录。" msgid "Sign up for a new account" msgstr "创建新帐号" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "电子邮件地址确认" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5818,12 +5818,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s 开始关注您的 %2$s 信息。" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5843,19 +5845,22 @@ msgstr "" "\n" "为您效力的 %4$s\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "" "自传Bio: %s\n" "\n" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "新的电子邮件地址,用于发布 %s 信息" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5875,21 +5880,31 @@ msgstr "" "\n" "为您效力的 %4$s" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "%s 状态" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "SMS短信确认" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "等待确认此电话号码。" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "%s 振铃呼叫你" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5905,12 +5920,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "%s 发送了新的私人信息" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5929,12 +5946,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s 收藏了您的通告" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5955,12 +5974,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5973,6 +6002,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -6144,27 +6185,27 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "没有内容!" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "创建" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 #, fuzzy msgid "Reply to this notice" msgstr "无法删除通告。" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 #, fuzzy msgid "Reply" msgstr "回复" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "消息已发布。" @@ -6276,12 +6317,7 @@ msgstr "" msgid "All groups" msgstr "所有组" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "没有这份文档。" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6307,6 +6343,11 @@ msgstr "特征" msgid "Popular" msgstr "用户" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "没有这份文档。" + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6518,47 +6559,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "几秒前" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "一分钟前" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "%d 分钟前" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "一小时前" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "%d 小时前" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "一天前" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "%d 天前" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "一个月前" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "%d 个月前" -#: lib/util.php:1064 +#: lib/util.php:1071 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 b6552280a2..0a93ac9800 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-05 18:54+0000\n" -"PO-Revision-Date: 2010-04-08 23:10:17+0000\n" +"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"PO-Revision-Date: 2010-04-09 21:28:42+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 (r64753); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64832); 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" @@ -769,7 +769,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:659 +#: lib/deleteuserform.php:66 lib/noticelist.php:648 msgid "Delete" msgstr "" @@ -811,7 +811,7 @@ msgstr "更新個人圖像" msgid "You already blocked that user." msgstr "無此使用者" -#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:158 #, fuzzy msgid "Block user" msgstr "無此使用者" @@ -825,7 +825,7 @@ msgstr "" #: actions/block.php:143 actions/deleteapplication.php:153 #: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 msgid "No" msgstr "" @@ -836,11 +836,11 @@ msgstr "無此使用者" #: actions/block.php:144 actions/deleteapplication.php:158 #: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:179 lib/repeatform.php:132 +#: actions/groupblock.php:177 lib/repeatform.php:132 msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "無此使用者" @@ -892,8 +892,10 @@ msgstr "" msgid "Unblock this user" msgstr "無此使用者" -#: actions/bookmarklet.php:50 -msgid "Post to " +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, php-format +msgid "Post to %s" msgstr "" #: actions/confirmaddress.php:75 @@ -968,7 +970,7 @@ msgstr "無法連結到伺服器:%s" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1219 +#: lib/action.php:1221 msgid "There was a problem with your session token." msgstr "" @@ -1028,7 +1030,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "無此通知" -#: actions/deletenotice.php:146 lib/noticelist.php:659 +#: actions/deletenotice.php:146 lib/noticelist.php:648 msgid "Delete this notice" msgstr "" @@ -1659,12 +1661,12 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:136 actions/groupmembers.php:341 +#: actions/groupblock.php:134 actions/groupmembers.php:356 #, fuzzy msgid "Block user from group" msgstr "無此使用者" -#: actions/groupblock.php:162 +#: actions/groupblock.php:160 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -1672,17 +1674,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:178 +#: actions/groupblock.php:176 #, fuzzy msgid "Do not block this user from this group" msgstr "無法連結到伺服器:%s" -#: actions/groupblock.php:179 +#: actions/groupblock.php:177 #, fuzzy msgid "Block this user from this group" msgstr "無此使用者" -#: actions/groupblock.php:196 +#: actions/groupblock.php:194 msgid "Database error blocking user from group." msgstr "" @@ -1761,19 +1763,19 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:373 lib/blockform.php:69 +#: actions/groupmembers.php:388 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:468 +#: actions/groupmembers.php:483 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:500 +#: actions/groupmembers.php:515 msgid "Make this user an admin" msgstr "" @@ -2033,12 +2035,14 @@ msgctxt "BUTTON" msgid "Send" msgstr "" -#: actions/invite.php:227 +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: actions/invite.php:229 +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -2342,16 +2346,19 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "%1$s的狀態是%2$s" -#: actions/oembed.php:157 -#, fuzzy -msgid "content type " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:158 +#, fuzzy, php-format +msgid "content type %s not supported" msgstr "連結" -#: actions/oembed.php:160 -msgid "Only " +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:162 +#, php-format +msgid "Only %s urls over plain http please" msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1068 +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 msgid "Not a supported data format." msgstr "" @@ -3049,7 +3056,7 @@ msgstr "確認碼發生錯誤" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +#: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -3101,21 +3108,13 @@ 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 -#, fuzzy +#, fuzzy, php-format msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" -#: actions/register.php:538 +#: actions/register.php:542 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -3134,7 +3133,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:562 +#: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -3212,7 +3211,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "無此使用者" -#: actions/repeat.php:114 lib/noticelist.php:678 +#: actions/repeat.php:114 lib/noticelist.php:667 #, fuzzy msgid "Repeated" msgstr "新增" @@ -4501,12 +4500,12 @@ msgstr "" msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:943 +#: classes/Notice.php:964 #, fuzzy msgid "Problem saving group inbox." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:1481 +#: classes/Notice.php:1510 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4823,23 +4822,21 @@ msgstr "" msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +#. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #: lib/action.php:849 -msgid "All " +#, php-format +msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:855 -msgid "license." -msgstr "" - -#: lib/action.php:1154 +#: lib/action.php:1156 msgid "Pagination" msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1165 msgid "After" msgstr "" -#: lib/action.php:1171 +#: lib/action.php:1173 #, fuzzy msgid "Before" msgstr "之前的內容»" @@ -5141,12 +5138,14 @@ msgstr "%1$s的狀態是%2$s" msgid "Fullname: %s" msgstr "全名" -#: lib/command.php:404 lib/mail.php:258 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:404 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" -#: lib/command.php:407 lib/mail.php:260 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:407 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" @@ -5599,11 +5598,13 @@ msgstr "使用者名稱或密碼無效" msgid "Sign up for a new account" msgstr "新增帳號" -#: lib/mail.php:173 +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 msgid "Email address confirmation" msgstr "確認信箱" -#: lib/mail.php:175 +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 #, php-format msgid "" "Hey, %s.\n" @@ -5620,12 +5621,14 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:240 +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mail.php:245 +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:249 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -5647,17 +5650,20 @@ msgstr "" "%4$s.\n" "敬上。\n" -#: lib/mail.php:262 +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:269 #, fuzzy, php-format msgid "Bio: %s" msgstr "自我介紹" -#: lib/mail.php:290 +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:293 +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:302 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -5670,21 +5676,31 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:417 +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:427 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:443 +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:454 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:467 +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:457 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:471 +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:483 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -5700,12 +5716,14 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:517 +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:530 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:521 +#. TRANS: Body for direct-message notification email +#: lib/mail.php:535 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -5724,12 +5742,14 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:568 +#. TRANS: Subject for favorite notification email +#: lib/mail.php:583 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mail.php:570 +#. TRANS: Body for favorite notification email +#: lib/mail.php:586 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -5750,12 +5770,22 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:635 +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:645 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:637 +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:654 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -5768,6 +5798,18 @@ msgid "" "\n" "\t%4$s\n" "\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" msgstr "" #: lib/mailbox.php:89 @@ -5935,25 +5977,25 @@ msgstr "" msgid "at" msgstr "" -#: lib/noticelist.php:570 +#: lib/noticelist.php:559 #, fuzzy msgid "in context" msgstr "無內容" -#: lib/noticelist.php:605 +#: lib/noticelist.php:594 #, fuzzy msgid "Repeated by" msgstr "新增" -#: lib/noticelist.php:632 +#: lib/noticelist.php:621 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:633 +#: lib/noticelist.php:622 msgid "Reply" msgstr "" -#: lib/noticelist.php:677 +#: lib/noticelist.php:666 #, fuzzy msgid "Notice repeated" msgstr "更新個人圖像" @@ -6062,12 +6104,7 @@ msgstr "" msgid "All groups" msgstr "" -#: lib/profileformaction.php:123 -#, fuzzy -msgid "No return-to arguments." -msgstr "無此文件" - -#: lib/profileformaction.php:137 +#: lib/profileformaction.php:114 msgid "Unimplemented method." msgstr "" @@ -6091,6 +6128,11 @@ msgstr "" msgid "Popular" msgstr "" +#: lib/redirectingaction.php:94 +#, fuzzy +msgid "No return-to arguments." +msgstr "無此文件" + #: lib/repeatform.php:107 #, fuzzy msgid "Repeat this notice?" @@ -6291,47 +6333,47 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1046 +#: lib/util.php:1053 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1048 +#: lib/util.php:1055 msgid "about a minute ago" msgstr "" -#: lib/util.php:1050 +#: lib/util.php:1057 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1052 +#: lib/util.php:1059 msgid "about an hour ago" msgstr "" -#: lib/util.php:1054 +#: lib/util.php:1061 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1056 +#: lib/util.php:1063 msgid "about a day ago" msgstr "" -#: lib/util.php:1058 +#: lib/util.php:1065 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1060 +#: lib/util.php:1067 msgid "about a month ago" msgstr "" -#: lib/util.php:1062 +#: lib/util.php:1069 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1064 +#: lib/util.php:1071 msgid "about a year ago" msgstr "" From 47eed2c99906fefb1f43ad186da91e526d2741cf Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 00:07:20 +0200 Subject: [PATCH 40/80] Update message formatting for serverError to use a starting capital and a leading period. --- actions/all.php | 2 +- actions/apitimelineretweetedbyme.php | 2 +- actions/avatarsettings.php | 4 ++-- actions/confirmaddress.php | 2 +- actions/finishremotesubscribe.php | 2 +- actions/oembed.php | 14 +++++++------- actions/public.php | 2 +- actions/remotesubscribe.php | 2 +- actions/replies.php | 2 +- actions/showfavorites.php | 2 +- actions/tag.php | 2 +- 11 files changed, 18 insertions(+), 18 deletions(-) diff --git a/actions/all.php b/actions/all.php index 8c22e6f5f0..a977fce954 100644 --- a/actions/all.php +++ b/actions/all.php @@ -61,7 +61,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); + $this->serverError(_('No such page.'), $code = 404); } return true; diff --git a/actions/apitimelineretweetedbyme.php b/actions/apitimelineretweetedbyme.php index 564e98619a..af05623cdf 100644 --- a/actions/apitimelineretweetedbyme.php +++ b/actions/apitimelineretweetedbyme.php @@ -69,7 +69,7 @@ class ApiTimelineRetweetedByMeAction extends ApiAuthAction { parent::prepare($args); - $this->serverError('Unimplemented', 503); + $this->serverError('Unimplemented.', 503); return false; } diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index d4ea11cb7e..52dc2e4249 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -103,7 +103,7 @@ class AvatarsettingsAction extends AccountSettingsAction if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return; } @@ -182,7 +182,7 @@ class AvatarsettingsAction extends AccountSettingsAction if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return; } diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php index cc8351d8dc..dc17499f55 100644 --- a/actions/confirmaddress.php +++ b/actions/confirmaddress.php @@ -87,7 +87,7 @@ class ConfirmaddressAction extends Action } $type = $confirm->address_type; if (!in_array($type, array('email', 'jabber', 'sms'))) { - $this->serverError(sprintf(_('Unrecognized address type %s'), $type)); + $this->serverError(sprintf(_('Unrecognized address type %s.'), $type)); return; } if ($cur->$type == $confirm->address) { diff --git a/actions/finishremotesubscribe.php b/actions/finishremotesubscribe.php index deee70f360..ac51ddec3f 100644 --- a/actions/finishremotesubscribe.php +++ b/actions/finishremotesubscribe.php @@ -135,7 +135,7 @@ class FinishremotesubscribeAction extends Action $service->getServiceURI(OMB_ENDPOINT_UPDATEPROFILE); if (!$remote->update($orig_remote)) { - $this->serverError(_('Error updating remote profile')); + $this->serverError(_('Error updating remote profile.')); return; } diff --git a/actions/oembed.php b/actions/oembed.php index 4a11a85e09..1503aa9c2b 100644 --- a/actions/oembed.php +++ b/actions/oembed.php @@ -60,7 +60,7 @@ class OembedAction extends Action $proxy_args = $r->map($path); if (!$proxy_args) { - $this->serverError(_("$path not found"), 404); + $this->serverError(_("$path not found."), 404); } $oembed=array(); $oembed['version']='1.0'; @@ -72,11 +72,11 @@ class OembedAction extends Action $id = $proxy_args['notice']; $notice = Notice::staticGet($id); if(empty($notice)){ - $this->serverError(_("notice $id not found"), 404); + $this->serverError(_("Notice $id not found."), 404); } $profile = $notice->getProfile(); if (empty($profile)) { - $this->serverError(_('Notice has no profile'), 500); + $this->serverError(_('Notice has no profile.'), 500); } if (!empty($profile->fullname)) { $authorname = $profile->fullname . ' (' . $profile->nickname . ')'; @@ -95,7 +95,7 @@ class OembedAction extends Action $id = $proxy_args['attachment']; $attachment = File::staticGet($id); if(empty($attachment)){ - $this->serverError(_("attachment $id not found"), 404); + $this->serverError(_("Attachment $id not found."), 404); } if(empty($attachment->filename) && $file_oembed = File_oembed::staticGet('file_id', $attachment->id)){ // Proxy the existing oembed information @@ -123,7 +123,7 @@ class OembedAction extends Action if($attachment->title) $oembed['title']=$attachment->title; break; default: - $this->serverError(_("$path not supported for oembed requests"), 501); + $this->serverError(_("$path not supported for oembed requests."), 501); } switch($args['format']){ case 'xml': @@ -155,11 +155,11 @@ class OembedAction extends Action break; default: // TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') - $this->serverError(sprintf(_('content type %s not supported'), $apidata['content-type']), 501); + $this->serverError(sprintf(_('Content type %s not supported.'), $apidata['content-type']), 501); } }else{ // TRANS: Error message displaying attachments. %s is the site's base URL. - $this->serverError(sprintf(_('Only %s urls over plain http please'), common_root_url()), 404); + $this->serverError(sprintf(_('Only %s URLs over plain HTTP please.'), common_root_url()), 404); } } diff --git a/actions/public.php b/actions/public.php index 0b3b5fde84..8e9db10caf 100644 --- a/actions/public.php +++ b/actions/public.php @@ -95,7 +95,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); + $this->serverError(_('No such page.'),$code=404); } return true; diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index c723d53a1c..9fc235e743 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -188,7 +188,7 @@ class RemotesubscribeAction extends Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return; } diff --git a/actions/replies.php b/actions/replies.php index 4ff1b7a8d2..608f71d6e0 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -90,7 +90,7 @@ class RepliesAction 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); + $this->serverError(_('No such page.'),$code=404); } return true; diff --git a/actions/showfavorites.php b/actions/showfavorites.php index 5b85de6835..4d776ef04c 100644 --- a/actions/showfavorites.php +++ b/actions/showfavorites.php @@ -135,7 +135,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); + $this->serverError(_('No such page.'),$code=404); } return true; diff --git a/actions/tag.php b/actions/tag.php index 512dac63a4..7c6f99d92b 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -49,7 +49,7 @@ class TagAction 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); + $this->serverError(_('No such page.'),$code=404); } return true; From ae4ade53a801309105ab3e0ae680dc9e186033c1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 15:19:04 -0700 Subject: [PATCH 41/80] Fix E_NOTICE and use of limit on userrss --- actions/userrss.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/userrss.php b/actions/userrss.php index e03eb93566..8f597e6259 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -72,7 +72,7 @@ class UserrssAction extends Rss10Action { $notice = $this->user->getNotices( 0, - ($limit == 0) ? NOTICES_PER_PAGE : $limit + ($this->limit == 0) ? NOTICES_PER_PAGE : $this->limit ); $notices = array(); From 58d5d7baeec6fae77ac5d3e82e6072725fe9bf1b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2010 09:56:19 -0700 Subject: [PATCH 42/80] Clean up badly formatted strings in OembedAction --- actions/oembed.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/actions/oembed.php b/actions/oembed.php index e287b6ae2a..4a11a85e09 100644 --- a/actions/oembed.php +++ b/actions/oembed.php @@ -154,10 +154,12 @@ class OembedAction extends Action $this->end_document('json'); break; default: - $this->serverError(_('content type ' . $apidata['content-type'] . ' not supported'), 501); + // TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') + $this->serverError(sprintf(_('content type %s not supported'), $apidata['content-type']), 501); } }else{ - $this->serverError(_('Only ' . common_root_url() . ' urls over plain http please'), 404); + // TRANS: Error message displaying attachments. %s is the site's base URL. + $this->serverError(sprintf(_('Only %s urls over plain http please'), common_root_url()), 404); } } From 5c6c9b6f5f40b50570505a366a858e83db9bb2ec Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 00:07:20 +0200 Subject: [PATCH 43/80] Update message formatting for serverError to use a starting capital and a leading period. --- actions/all.php | 2 +- actions/apitimelineretweetedbyme.php | 2 +- actions/avatarsettings.php | 4 ++-- actions/confirmaddress.php | 2 +- actions/finishremotesubscribe.php | 2 +- actions/oembed.php | 14 +++++++------- actions/public.php | 2 +- actions/remotesubscribe.php | 2 +- actions/replies.php | 2 +- actions/showfavorites.php | 2 +- actions/tag.php | 2 +- 11 files changed, 18 insertions(+), 18 deletions(-) diff --git a/actions/all.php b/actions/all.php index 8c22e6f5f0..a977fce954 100644 --- a/actions/all.php +++ b/actions/all.php @@ -61,7 +61,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); + $this->serverError(_('No such page.'), $code = 404); } return true; diff --git a/actions/apitimelineretweetedbyme.php b/actions/apitimelineretweetedbyme.php index 564e98619a..af05623cdf 100644 --- a/actions/apitimelineretweetedbyme.php +++ b/actions/apitimelineretweetedbyme.php @@ -69,7 +69,7 @@ class ApiTimelineRetweetedByMeAction extends ApiAuthAction { parent::prepare($args); - $this->serverError('Unimplemented', 503); + $this->serverError('Unimplemented.', 503); return false; } diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index d4ea11cb7e..52dc2e4249 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -103,7 +103,7 @@ class AvatarsettingsAction extends AccountSettingsAction if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return; } @@ -182,7 +182,7 @@ class AvatarsettingsAction extends AccountSettingsAction if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return; } diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php index cc8351d8dc..dc17499f55 100644 --- a/actions/confirmaddress.php +++ b/actions/confirmaddress.php @@ -87,7 +87,7 @@ class ConfirmaddressAction extends Action } $type = $confirm->address_type; if (!in_array($type, array('email', 'jabber', 'sms'))) { - $this->serverError(sprintf(_('Unrecognized address type %s'), $type)); + $this->serverError(sprintf(_('Unrecognized address type %s.'), $type)); return; } if ($cur->$type == $confirm->address) { diff --git a/actions/finishremotesubscribe.php b/actions/finishremotesubscribe.php index deee70f360..ac51ddec3f 100644 --- a/actions/finishremotesubscribe.php +++ b/actions/finishremotesubscribe.php @@ -135,7 +135,7 @@ class FinishremotesubscribeAction extends Action $service->getServiceURI(OMB_ENDPOINT_UPDATEPROFILE); if (!$remote->update($orig_remote)) { - $this->serverError(_('Error updating remote profile')); + $this->serverError(_('Error updating remote profile.')); return; } diff --git a/actions/oembed.php b/actions/oembed.php index 4a11a85e09..1503aa9c2b 100644 --- a/actions/oembed.php +++ b/actions/oembed.php @@ -60,7 +60,7 @@ class OembedAction extends Action $proxy_args = $r->map($path); if (!$proxy_args) { - $this->serverError(_("$path not found"), 404); + $this->serverError(_("$path not found."), 404); } $oembed=array(); $oembed['version']='1.0'; @@ -72,11 +72,11 @@ class OembedAction extends Action $id = $proxy_args['notice']; $notice = Notice::staticGet($id); if(empty($notice)){ - $this->serverError(_("notice $id not found"), 404); + $this->serverError(_("Notice $id not found."), 404); } $profile = $notice->getProfile(); if (empty($profile)) { - $this->serverError(_('Notice has no profile'), 500); + $this->serverError(_('Notice has no profile.'), 500); } if (!empty($profile->fullname)) { $authorname = $profile->fullname . ' (' . $profile->nickname . ')'; @@ -95,7 +95,7 @@ class OembedAction extends Action $id = $proxy_args['attachment']; $attachment = File::staticGet($id); if(empty($attachment)){ - $this->serverError(_("attachment $id not found"), 404); + $this->serverError(_("Attachment $id not found."), 404); } if(empty($attachment->filename) && $file_oembed = File_oembed::staticGet('file_id', $attachment->id)){ // Proxy the existing oembed information @@ -123,7 +123,7 @@ class OembedAction extends Action if($attachment->title) $oembed['title']=$attachment->title; break; default: - $this->serverError(_("$path not supported for oembed requests"), 501); + $this->serverError(_("$path not supported for oembed requests."), 501); } switch($args['format']){ case 'xml': @@ -155,11 +155,11 @@ class OembedAction extends Action break; default: // TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') - $this->serverError(sprintf(_('content type %s not supported'), $apidata['content-type']), 501); + $this->serverError(sprintf(_('Content type %s not supported.'), $apidata['content-type']), 501); } }else{ // TRANS: Error message displaying attachments. %s is the site's base URL. - $this->serverError(sprintf(_('Only %s urls over plain http please'), common_root_url()), 404); + $this->serverError(sprintf(_('Only %s URLs over plain HTTP please.'), common_root_url()), 404); } } diff --git a/actions/public.php b/actions/public.php index 0b3b5fde84..8e9db10caf 100644 --- a/actions/public.php +++ b/actions/public.php @@ -95,7 +95,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); + $this->serverError(_('No such page.'),$code=404); } return true; diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index c723d53a1c..9fc235e743 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -188,7 +188,7 @@ class RemotesubscribeAction extends Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return; } diff --git a/actions/replies.php b/actions/replies.php index 4ff1b7a8d2..608f71d6e0 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -90,7 +90,7 @@ class RepliesAction 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); + $this->serverError(_('No such page.'),$code=404); } return true; diff --git a/actions/showfavorites.php b/actions/showfavorites.php index 5b85de6835..4d776ef04c 100644 --- a/actions/showfavorites.php +++ b/actions/showfavorites.php @@ -135,7 +135,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); + $this->serverError(_('No such page.'),$code=404); } return true; diff --git a/actions/tag.php b/actions/tag.php index ee9617b662..9532404041 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -49,7 +49,7 @@ class TagAction 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); + $this->serverError(_('No such page.'),$code=404); } return true; From 3656a2cb13c0b6ba2326d6209739c1cd762ee2d2 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 00:58:57 +0200 Subject: [PATCH 44/80] Fix inconsistencies in clientError() messages * use correct punctuation * single quotes when replace was possible * wording updated when needed --- actions/apiaccountupdatedeliverydevice.php | 2 +- actions/apigroupcreate.php | 2 +- actions/apigroupismember.php | 2 +- actions/apigroupjoin.php | 2 +- actions/apigroupleave.php | 2 +- actions/apigroupmembership.php | 2 +- actions/apigroupshow.php | 2 +- actions/apistatusesupdate.php | 2 +- actions/apitimelinegroup.php | 2 +- actions/block.php | 2 +- actions/deleteuser.php | 4 ++-- actions/designadminpanel.php | 4 ++-- actions/disfavor.php | 2 +- actions/favor.php | 2 +- actions/grantrole.php | 8 ++++---- actions/invite.php | 2 +- actions/microsummary.php | 2 +- actions/oauthconnectionssettings.php | 4 ++-- actions/pathsadminpanel.php | 10 +++++----- actions/peopletag.php | 2 +- actions/postnotice.php | 2 +- actions/public.php | 2 +- actions/repeat.php | 10 +++++----- actions/revokerole.php | 6 +++--- actions/sandbox.php | 4 ++-- actions/shownotice.php | 2 +- actions/silence.php | 4 ++-- actions/siteadminpanel.php | 4 ++-- actions/sitenoticeadminpanel.php | 2 +- actions/snapshotadminpanel.php | 6 +++--- actions/unsandbox.php | 4 ++-- actions/unsilence.php | 4 ++-- actions/unsubscribe.php | 2 +- actions/userauthorization.php | 2 +- actions/userrss.php | 2 +- 35 files changed, 58 insertions(+), 58 deletions(-) diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php index 684906fe90..05d19c22de 100644 --- a/actions/apiaccountupdatedeliverydevice.php +++ b/actions/apiaccountupdatedeliverydevice.php @@ -103,7 +103,7 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction $this->clientError( _( 'You must specify a parameter named ' . - '\'device\' with a value of one of: sms, im, none' + '\'device\' with a value of one of: sms, im, none.' ) ); return; diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index 145806356c..3eb3ae5fcc 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -263,7 +263,7 @@ class ApiGroupCreateAction extends ApiAuthAction if (!$valid) { $this->clientError( - sprintf(_('Invalid alias: "%s"'), $alias), + sprintf(_('Invalid alias: "%s".'), $alias), 403, $this->format ); diff --git a/actions/apigroupismember.php b/actions/apigroupismember.php index 97f8435614..f51c747dfb 100644 --- a/actions/apigroupismember.php +++ b/actions/apigroupismember.php @@ -92,7 +92,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction } if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php index 374cf83df0..28df72fa9a 100644 --- a/actions/apigroupjoin.php +++ b/actions/apigroupjoin.php @@ -101,7 +101,7 @@ class ApiGroupJoinAction extends ApiAuthAction } if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index 9848ece053..f6e52b26e8 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -101,7 +101,7 @@ class ApiGroupLeaveAction extends ApiAuthAction } if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index 9f72b527cf..c97b27fac4 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -88,7 +88,7 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction parent::handle($args); if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 5745a81f41..8e471689a8 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -79,7 +79,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction common_redirect(common_local_url('ApiGroupShow', $args), 301); } else { $this->clientError( - _('Group not found!'), + _('Group not found.'), 404, $this->format ); diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 1956c85863..d4ef6b550d 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -199,7 +199,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction $reply_to = $this->in_reply_to_status_id; } else { $this->clientError( - _('Not found'), + _('Not found.'), $code = 404, $this->format ); diff --git a/actions/apitimelinegroup.php b/actions/apitimelinegroup.php index da816c40a9..56d1de094c 100644 --- a/actions/apitimelinegroup.php +++ b/actions/apitimelinegroup.php @@ -88,7 +88,7 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction parent::handle($args); if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/block.php b/actions/block.php index fe4ec00881..7f609c253b 100644 --- a/actions/block.php +++ b/actions/block.php @@ -66,7 +66,7 @@ class BlockAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if ($cur->hasBlocked($this->profile)) { - $this->clientError(_("You already blocked that user.")); + $this->clientError(_('You already blocked that user.')); return false; } diff --git a/actions/deleteuser.php b/actions/deleteuser.php index 4e6b273953..42ef4b9f51 100644 --- a/actions/deleteuser.php +++ b/actions/deleteuser.php @@ -64,14 +64,14 @@ class DeleteuserAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::DELETEUSER)) { - $this->clientError(_("You cannot delete users.")); + $this->clientError(_('You cannot delete users.')); return false; } $this->user = User::staticGet('id', $this->profile->id); if (empty($this->user)) { - $this->clientError(_("You can only delete local users.")); + $this->clientError(_('You can only delete local users.')); return false; } diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index 30e8bde1a4..41d917e3ca 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -272,11 +272,11 @@ class DesignadminpanelAction extends AdminPanelAction { if (!empty($values['logo']) && !Validate::uri($values['logo'], array('allowed_schemes' => array('http', 'https')))) { - $this->clientError(_("Invalid logo URL.")); + $this->clientError(_('Invalid logo URL.')); } if (!in_array($values['theme'], Theme::listAvailable())) { - $this->clientError(sprintf(_("Theme not available: %s"), $values['theme'])); + $this->clientError(sprintf(_("Theme not available: %s."), $values['theme'])); } } diff --git a/actions/disfavor.php b/actions/disfavor.php index 6269f1bd25..3ccdd69af2 100644 --- a/actions/disfavor.php +++ b/actions/disfavor.php @@ -71,7 +71,7 @@ class DisfavorAction extends Action $notice = Notice::staticGet($id); $token = $this->trimmed('token-'.$notice->id); if (!$token || $token != common_session_token()) { - $this->clientError(_("There was a problem with your session token. Try again, please.")); + $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } $fave = new Fave(); diff --git a/actions/favor.php b/actions/favor.php index afca9768ae..475912fd0b 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -72,7 +72,7 @@ class FavorAction extends Action $notice = Notice::staticGet($id); $token = $this->trimmed('token-'.$notice->id); if (!$token || $token != common_session_token()) { - $this->clientError(_("There was a problem with your session token. Try again, please.")); + $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } if ($user->hasFave($notice)) { diff --git a/actions/grantrole.php b/actions/grantrole.php index cd6bd4d79a..b8b23d02e9 100644 --- a/actions/grantrole.php +++ b/actions/grantrole.php @@ -59,11 +59,11 @@ class GrantRoleAction extends ProfileFormAction $this->role = $this->arg('role'); if (!Profile_role::isValid($this->role)) { - $this->clientError(_("Invalid role.")); + $this->clientError(_('Invalid role.')); return false; } if (!Profile_role::isSettable($this->role)) { - $this->clientError(_("This role is reserved and cannot be set.")); + $this->clientError(_('This role is reserved and cannot be set.')); return false; } @@ -72,14 +72,14 @@ class GrantRoleAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::GRANTROLE)) { - $this->clientError(_("You cannot grant user roles on this site.")); + $this->clientError(_('You cannot grant user roles on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if ($this->profile->hasRole($this->role)) { - $this->clientError(_("User already has this role.")); + $this->clientError(_('User already has this role.')); return false; } diff --git a/actions/invite.php b/actions/invite.php index f17c910b66..4bba8893d6 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -38,7 +38,7 @@ class InviteAction extends CurrentUserDesignAction if (!common_config('invite', 'enabled')) { $this->clientError(_('Invites have been disabled.')); } else if (!common_logged_in()) { - $this->clientError(sprintf(_('You must be logged in to invite other users to use %s'), + $this->clientError(sprintf(_('You must be logged in to invite other users to use %s.'), common_config('site', 'name'))); return; } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { diff --git a/actions/microsummary.php b/actions/microsummary.php index 5c761e8bb6..d145dc3bc7 100644 --- a/actions/microsummary.php +++ b/actions/microsummary.php @@ -66,7 +66,7 @@ class MicrosummaryAction extends Action $notice = $user->getCurrentNotice(); if (!$notice) { - $this->clientError(_('No current status'), 404); + $this->clientError(_('No current status.'), 404); } header('Content-Type: text/plain'); diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php index f125f4c631..8a206d7101 100644 --- a/actions/oauthconnectionssettings.php +++ b/actions/oauthconnectionssettings.php @@ -183,7 +183,7 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction if (!$result) { common_log_db_error($orig, 'DELETE', __FILE__); - $this->clientError(_('Unable to revoke access for app: ' . $app->id)); + $this->clientError(sprintf(_('Unable to revoke access for app: %s.'), $app->id)); return false; } @@ -195,7 +195,7 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction function showEmptyListMessage() { - $message = sprintf(_('You have not authorized any applications to use your account.')); + $message = _('You have not authorized any applications to use your account.'); $this->elementStart('div', 'guide'); $this->raw(common_markup_to_html($message)); diff --git a/actions/pathsadminpanel.php b/actions/pathsadminpanel.php index 9155a7e428..7ff3c2583a 100644 --- a/actions/pathsadminpanel.php +++ b/actions/pathsadminpanel.php @@ -154,19 +154,19 @@ class PathsadminpanelAction extends AdminPanelAction // Validate theme dir if (!empty($values['theme']['dir']) && !is_readable($values['theme']['dir'])) { - $this->clientError(sprintf(_("Theme directory not readable: %s"), $values['theme']['dir'])); + $this->clientError(sprintf(_("Theme directory not readable: %s."), $values['theme']['dir'])); } // Validate avatar dir if (empty($values['avatar']['dir']) || !is_writable($values['avatar']['dir'])) { - $this->clientError(sprintf(_("Avatar directory not writable: %s"), $values['avatar']['dir'])); + $this->clientError(sprintf(_("Avatar directory not writable: %s."), $values['avatar']['dir'])); } // Validate background dir if (empty($values['background']['dir']) || !is_writable($values['background']['dir'])) { - $this->clientError(sprintf(_("Background directory not writable: %s"), $values['background']['dir'])); + $this->clientError(sprintf(_("Background directory not writable: %s."), $values['background']['dir'])); } // Validate locales dir @@ -174,13 +174,13 @@ class PathsadminpanelAction extends AdminPanelAction // XXX: What else do we need to validate for lacales path here? --Z if (!empty($values['site']['locale_path']) && !is_readable($values['site']['locale_path'])) { - $this->clientError(sprintf(_("Locales directory not readable: %s"), $values['site']['locale_path'])); + $this->clientError(sprintf(_("Locales directory not readable: %s."), $values['site']['locale_path'])); } // Validate SSL setup if (mb_strlen($values['site']['sslserver']) > 255) { - $this->clientError(_("Invalid SSL server. The maximum length is 255 characters.")); + $this->clientError(_('Invalid SSL server. The maximum length is 255 characters.')); } } diff --git a/actions/peopletag.php b/actions/peopletag.php index 456cc21c4c..5473bc1bdf 100644 --- a/actions/peopletag.php +++ b/actions/peopletag.php @@ -65,7 +65,7 @@ class PeopletagAction extends Action $this->tag = $this->trimmed('tag'); if (!common_valid_profile_tag($this->tag)) { - $this->clientError(sprintf(_('Not a valid people tag: %s'), + $this->clientError(sprintf(_('Not a valid people tag: %s.'), $this->tag)); return; } diff --git a/actions/postnotice.php b/actions/postnotice.php index b2f6f1bb95..694c7808d9 100644 --- a/actions/postnotice.php +++ b/actions/postnotice.php @@ -92,7 +92,7 @@ class PostnoticeAction extends Action { $content = common_shorten_links($_POST['omb_notice_content']); if (Notice::contentTooLong($content)) { - $this->clientError(_('Invalid notice content'), 400); + $this->clientError(_('Invalid notice content.'), 400); return false; } $license = $_POST['omb_notice_license']; diff --git a/actions/public.php b/actions/public.php index 8e9db10caf..5fc547feaf 100644 --- a/actions/public.php +++ b/actions/public.php @@ -80,7 +80,7 @@ class PublicAction extends Action $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; if ($this->page > MAX_PUBLIC_PAGE) { - $this->clientError(sprintf(_("Beyond the page limit (%s)"), MAX_PUBLIC_PAGE)); + $this->clientError(sprintf(_("Beyond the page limit (%s)."), MAX_PUBLIC_PAGE)); } common_set_returnto($this->selfUrl()); diff --git a/actions/repeat.php b/actions/repeat.php index e112496bc1..893cae4ffd 100644 --- a/actions/repeat.php +++ b/actions/repeat.php @@ -54,21 +54,21 @@ class RepeatAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - $this->clientError(_("Only logged-in users can repeat notices.")); + $this->clientError(_('Only logged-in users can repeat notices.')); return false; } $id = $this->trimmed('notice'); if (empty($id)) { - $this->clientError(_("No notice specified.")); + $this->clientError(_('No notice specified.')); return false; } $this->notice = Notice::staticGet('id', $id); if (empty($this->notice)) { - $this->clientError(_("No notice specified.")); + $this->clientError(_('No notice specified.')); return false; } @@ -80,14 +80,14 @@ class RepeatAction extends Action $token = $this->trimmed('token-'.$id); if (empty($token) || $token != common_session_token()) { - $this->clientError(_("There was a problem with your session token. Try again, please.")); + $this->clientError(_('There was a problem with your session token. Try again, please.')); return false; } $profile = $this->user->getProfile(); if ($profile->hasRepeated($id)) { - $this->clientError(_("You already repeated that notice.")); + $this->clientError(_('You already repeated that notice.')); return false; } diff --git a/actions/revokerole.php b/actions/revokerole.php index b78c1c25a4..c67b70fdaf 100644 --- a/actions/revokerole.php +++ b/actions/revokerole.php @@ -59,11 +59,11 @@ class RevokeRoleAction extends ProfileFormAction $this->role = $this->arg('role'); if (!Profile_role::isValid($this->role)) { - $this->clientError(_("Invalid role.")); + $this->clientError(_('Invalid role.')); return false; } if (!Profile_role::isSettable($this->role)) { - $this->clientError(_("This role is reserved and cannot be set.")); + $this->clientError(_('This role is reserved and cannot be set.')); return false; } @@ -72,7 +72,7 @@ class RevokeRoleAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::REVOKEROLE)) { - $this->clientError(_("You cannot revoke user roles on this site.")); + $this->clientError(_('You cannot revoke user roles on this site.')); return false; } diff --git a/actions/sandbox.php b/actions/sandbox.php index 5b034ff078..d1ef4c86b2 100644 --- a/actions/sandbox.php +++ b/actions/sandbox.php @@ -62,14 +62,14 @@ class SandboxAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SANDBOXUSER)) { - $this->clientError(_("You cannot sandbox users on this site.")); + $this->clientError(_('You cannot sandbox users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if ($this->profile->isSandboxed()) { - $this->clientError(_("User is already sandboxed.")); + $this->clientError(_('User is already sandboxed.')); return false; } diff --git a/actions/shownotice.php b/actions/shownotice.php index ca6b60d1f5..9c5d83441b 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -97,7 +97,7 @@ class ShownoticeAction extends OwnerDesignAction $this->profile = $this->notice->getProfile(); if (empty($this->profile)) { - $this->serverError(_('Notice has no profile'), 500); + $this->serverError(_('Notice has no profile.'), 500); return false; } diff --git a/actions/silence.php b/actions/silence.php index 206e5ba878..09cc480d9e 100644 --- a/actions/silence.php +++ b/actions/silence.php @@ -62,14 +62,14 @@ class SilenceAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SILENCEUSER)) { - $this->clientError(_("You cannot silence users on this site.")); + $this->clientError(_('You cannot silence users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if ($this->profile->isSilenced()) { - $this->clientError(_("User is already silenced.")); + $this->clientError(_('User is already silenced.')); return false; } diff --git a/actions/siteadminpanel.php b/actions/siteadminpanel.php index e5482987fb..4238b3e85a 100644 --- a/actions/siteadminpanel.php +++ b/actions/siteadminpanel.php @@ -130,7 +130,7 @@ class SiteadminpanelAction extends AdminPanelAction // Validate site name if (empty($values['site']['name'])) { - $this->clientError(_("Site name must have non-zero length.")); + $this->clientError(_('Site name must have non-zero length.')); } // Validate email @@ -168,7 +168,7 @@ class SiteadminpanelAction extends AdminPanelAction // Validate dupe limit if (!Validate::number($values['site']['dupelimit'], array('min' => 1))) { - $this->clientError(_("Dupe limit must 1 or more seconds.")); + $this->clientError(_("Dupe limit must be one or more seconds.")); } } diff --git a/actions/sitenoticeadminpanel.php b/actions/sitenoticeadminpanel.php index a68cc699ca..bdcaa23557 100644 --- a/actions/sitenoticeadminpanel.php +++ b/actions/sitenoticeadminpanel.php @@ -110,7 +110,7 @@ class SitenoticeadminpanelAction extends AdminPanelAction if (mb_strlen($siteNotice) > 255) { $this->clientError( - _('Max length for the site-wide notice is 255 chars') + _('Max length for the site-wide notice is 255 chars.') ); } diff --git a/actions/snapshotadminpanel.php b/actions/snapshotadminpanel.php index a0c2315bc1..df6b168dc8 100644 --- a/actions/snapshotadminpanel.php +++ b/actions/snapshotadminpanel.php @@ -124,13 +124,13 @@ class SnapshotadminpanelAction extends AdminPanelAction // Validate snapshot run value if (!in_array($values['snapshot']['run'], array('web', 'cron', 'never'))) { - $this->clientError(_("Invalid snapshot run value.")); + $this->clientError(_('Invalid snapshot run value.')); } // Validate snapshot frequency value if (!Validate::number($values['snapshot']['frequency'])) { - $this->clientError(_("Snapshot frequency must be a number.")); + $this->clientError(_('Snapshot frequency must be a number.')); } // Validate report URL @@ -141,7 +141,7 @@ class SnapshotadminpanelAction extends AdminPanelAction array('allowed_schemes' => array('http', 'https') ) )) { - $this->clientError(_("Invalid snapshot report URL.")); + $this->clientError(_('Invalid snapshot report URL.')); } } } diff --git a/actions/unsandbox.php b/actions/unsandbox.php index 22f4d8e766..d50b5072ee 100644 --- a/actions/unsandbox.php +++ b/actions/unsandbox.php @@ -62,14 +62,14 @@ class UnsandboxAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SANDBOXUSER)) { - $this->clientError(_("You cannot sandbox users on this site.")); + $this->clientError(_('You cannot sandbox users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if (!$this->profile->isSandboxed()) { - $this->clientError(_("User is not sandboxed.")); + $this->clientError(_('User is not sandboxed.')); return false; } diff --git a/actions/unsilence.php b/actions/unsilence.php index 9ff1b828b0..7d282c3661 100644 --- a/actions/unsilence.php +++ b/actions/unsilence.php @@ -62,14 +62,14 @@ class UnsilenceAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SILENCEUSER)) { - $this->clientError(_("You cannot silence users on this site.")); + $this->clientError(_('You cannot silence users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if (!$this->profile->isSilenced()) { - $this->clientError(_("User is not silenced.")); + $this->clientError(_('User is not silenced.')); return false; } diff --git a/actions/unsubscribe.php b/actions/unsubscribe.php index 6bb10d448b..57ca15d687 100644 --- a/actions/unsubscribe.php +++ b/actions/unsubscribe.php @@ -74,7 +74,7 @@ class UnsubscribeAction extends Action $other_id = $this->arg('unsubscribeto'); if (!$other_id) { - $this->clientError(_('No profile id in request.')); + $this->clientError(_('No profile ID in request.')); return; } diff --git a/actions/userauthorization.php b/actions/userauthorization.php index 7f71c60dbe..e896ff96ca 100644 --- a/actions/userauthorization.php +++ b/actions/userauthorization.php @@ -69,7 +69,7 @@ class UserauthorizationAction extends Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return; } diff --git a/actions/userrss.php b/actions/userrss.php index e03eb93566..cf7d18ca88 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -103,7 +103,7 @@ class UserrssAction extends Rss10Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return null; } $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); From b2addab534608a989faa5864174c86cc0370e35c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 01:03:39 +0200 Subject: [PATCH 45/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/af/LC_MESSAGES/statusnet.po | 125 ++++++++++--------- locale/ar/LC_MESSAGES/statusnet.po | 119 +++++++++--------- locale/arz/LC_MESSAGES/statusnet.po | 119 +++++++++--------- locale/bg/LC_MESSAGES/statusnet.po | 112 +++++++++-------- locale/br/LC_MESSAGES/statusnet.po | 117 +++++++++--------- locale/ca/LC_MESSAGES/statusnet.po | 117 +++++++++--------- locale/cs/LC_MESSAGES/statusnet.po | 116 +++++++++--------- locale/de/LC_MESSAGES/statusnet.po | 115 ++++++++++-------- locale/el/LC_MESSAGES/statusnet.po | 117 +++++++++--------- locale/en_GB/LC_MESSAGES/statusnet.po | 120 ++++++++++--------- locale/es/LC_MESSAGES/statusnet.po | 118 +++++++++--------- locale/fa/LC_MESSAGES/statusnet.po | 116 +++++++++--------- locale/fi/LC_MESSAGES/statusnet.po | 115 +++++++++--------- locale/fr/LC_MESSAGES/statusnet.po | 118 +++++++++--------- locale/ga/LC_MESSAGES/statusnet.po | 109 +++++++++-------- locale/gl/LC_MESSAGES/statusnet.po | 118 +++++++++--------- locale/he/LC_MESSAGES/statusnet.po | 114 +++++++++--------- locale/hsb/LC_MESSAGES/statusnet.po | 125 ++++++++++--------- locale/ia/LC_MESSAGES/statusnet.po | 116 ++++++++++-------- locale/is/LC_MESSAGES/statusnet.po | 115 +++++++++--------- locale/it/LC_MESSAGES/statusnet.po | 118 +++++++++--------- locale/ja/LC_MESSAGES/statusnet.po | 115 ++++++++++-------- locale/ko/LC_MESSAGES/statusnet.po | 115 +++++++++--------- locale/mk/LC_MESSAGES/statusnet.po | 118 +++++++++--------- locale/nb/LC_MESSAGES/statusnet.po | 126 ++++++++++--------- locale/nl/LC_MESSAGES/statusnet.po | 137 +++++++++++---------- locale/nn/LC_MESSAGES/statusnet.po | 111 +++++++++-------- locale/pl/LC_MESSAGES/statusnet.po | 166 ++++++++++++++++---------- locale/pt/LC_MESSAGES/statusnet.po | 117 +++++++++--------- locale/pt_BR/LC_MESSAGES/statusnet.po | 116 ++++++++++-------- locale/ru/LC_MESSAGES/statusnet.po | 118 +++++++++--------- locale/statusnet.pot | 82 ++++++------- locale/sv/LC_MESSAGES/statusnet.po | 118 +++++++++--------- locale/te/LC_MESSAGES/statusnet.po | 122 ++++++++++--------- locale/tr/LC_MESSAGES/statusnet.po | 116 +++++++++--------- locale/uk/LC_MESSAGES/statusnet.po | 118 +++++++++--------- locale/vi/LC_MESSAGES/statusnet.po | 109 +++++++++-------- locale/zh_CN/LC_MESSAGES/statusnet.po | 109 +++++++++-------- locale/zh_TW/LC_MESSAGES/statusnet.po | 114 +++++++++--------- 39 files changed, 2451 insertions(+), 2135 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 1b328e6f39..786d7b8e32 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:32+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 22:59:38+0000\n" "Language-Team: Afrikaans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -79,7 +79,8 @@ msgstr "Stoor" #. 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" +#, fuzzy +msgid "No such page." msgstr "Hierdie bladsy bestaan nie" #: actions/all.php:75 actions/allrss.php:68 @@ -223,7 +224,7 @@ msgstr "Hierdie metode benodig 'n POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -426,10 +427,9 @@ msgstr "Ligging is te lank is (maksimum 255 karakters)." msgid "Too many aliases! Maximum %d." msgstr "Te veel aliasse! Die maksimum aantal is %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Ongeldige alias: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -446,7 +446,8 @@ msgstr "Die alias kan nie dieselfde as die gebruikersnaam wees nie." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Groep nie gevind nie!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -632,9 +633,9 @@ msgstr "Geen status met die ID gevind nie." msgid "That's too long. Max notice size is %d chars." msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Nie gevind nie" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Nie gevind nie." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -695,10 +696,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nie gevind nie." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Die aanhangsel bestaan nie." @@ -729,9 +726,9 @@ 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:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -885,7 +882,7 @@ msgstr "" #: actions/confirmaddress.php:90 #, php-format -msgid "Unrecognized address type %s" +msgid "Unrecognized address type %s." msgstr "" #: actions/confirmaddress.php:94 @@ -1034,8 +1031,8 @@ msgid "Invalid logo URL." msgstr "Die logo-URL is ongeldig." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Tema is nie beskikbaar nie: %s" #: actions/designadminpanel.php:375 @@ -1239,6 +1236,11 @@ msgstr "Gebruik hierdie vorm om die groep te wysig." msgid "description is too long (max %d chars)." msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ongeldige alias: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Dit was nie moontlik om die groep by te werk nie." @@ -1535,9 +1537,10 @@ msgstr "" 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/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Kon nie die profiel stoor nie." #: actions/getfile.php:79 msgid "No such file." @@ -1653,10 +1656,6 @@ 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 "" @@ -1883,9 +1882,9 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "U moet aanteken alvorens u by groep kan aansluit." #: actions/invite.php:72 #, php-format @@ -2080,7 +2079,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Geen huidige status" #: actions/newapplication.php:52 @@ -2237,11 +2237,11 @@ msgid "You are not a user of that application." msgstr "" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2250,8 +2250,9 @@ 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 "" +#, fuzzy +msgid "Notice has no profile." +msgstr "Hierdie gebruiker het nie 'n profiel nie." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2261,13 +2262,13 @@ msgstr "Status van %1$s op %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2420,23 +2421,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "" #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Tema is nie beskikbaar nie: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Avatar-gids" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Agtergrond-gids" #: actions/pathsadminpanel.php:177 #, php-format -msgid "Locales directory not readable: %s" +msgid "Locales directory not readable: %s." msgstr "" #: actions/pathsadminpanel.php:183 @@ -2575,9 +2576,9 @@ msgid "People search" msgstr "Soek gebruikers" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." +msgstr "Nie 'n geldige e-posadres nie." #: actions/peopletag.php:142 #, php-format @@ -2585,8 +2586,9 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "" #: actions/postnotice.php:95 -msgid "Invalid notice content" -msgstr "" +#, fuzzy +msgid "Invalid notice content." +msgstr "Ongeldige token." #: actions/postnotice.php:101 #, php-format @@ -2726,7 +2728,7 @@ msgstr "Voorkeure is gestoor." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3559,7 +3561,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3647,7 +3649,7 @@ msgid "Unable to save site notice." msgstr "" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -3997,8 +3999,9 @@ msgid "User is not silenced." msgstr "" #: actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" +#, fuzzy +msgid "No profile ID in request." +msgstr "Daar is geen profiel met daardie ID nie." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -5794,6 +5797,10 @@ msgstr "" msgid "Error inserting avatar" msgstr "" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index bcf833a424..35e7196ce7 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:35+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 22:59:41+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -81,7 +81,8 @@ msgstr "احفظ" #. 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" +#, fuzzy +msgid "No such page." msgstr "لا صفحة كهذه" #: actions/all.php:75 actions/allrss.php:68 @@ -223,7 +224,7 @@ msgstr "تتطلب هذه الطريقة POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -419,10 +420,9 @@ msgstr "" msgid "Too many aliases! Maximum %d." msgstr "كنيات كيرة! العدد الأقصى هو %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "كنية غير صالحة: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -439,7 +439,8 @@ msgstr "" #: 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!" +#, fuzzy +msgid "Group not found." msgstr "لم توجد المجموعة!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -628,9 +629,9 @@ msgstr "لا حالة وُجدت بهذه الهوية." msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "لم يوجد" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "لم يوجد." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -691,10 +692,6 @@ msgstr "الإشعارات الموسومة ب%s" msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "لم يوجد." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "لا مرفق كهذا." @@ -725,10 +722,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للملف هو %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "المستخدم بدون ملف مطابق." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -881,7 +878,7 @@ msgstr "رمز التأكيد ليس لك!" #: actions/confirmaddress.php:90 #, php-format -msgid "Unrecognized address type %s" +msgid "Unrecognized address type %s." msgstr "" #: actions/confirmaddress.php:94 @@ -1030,8 +1027,8 @@ msgid "Invalid logo URL." msgstr "مسار شعار غير صالح." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "السمة غير متوفرة: %s" #: actions/designadminpanel.php:375 @@ -1235,6 +1232,11 @@ msgstr "استخدم هذا النموذج لتعديل المجموعة." msgid "description is too long (max %d chars)." msgstr "" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "كنية غير صالحة: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "تعذر تحديث المجموعة." @@ -1531,8 +1533,9 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "خطأ أثناء تحديث الملف الشخصي البعيد" #: actions/getfile.php:79 @@ -1652,10 +1655,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "بإمكانك رفع صورة شعار مجموعتك. أقصى حجم للملف هو %s." -#: 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 "" @@ -1888,9 +1887,9 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "يجب أن تلج لتُعدّل المجموعات." #: actions/invite.php:72 #, php-format @@ -2087,7 +2086,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "لم يمكن جعل %1$s إداريا للمجموعة %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "لا حالة حالية" #: actions/newapplication.php:52 @@ -2246,11 +2246,11 @@ msgid "You are not a user of that application." msgstr "لست مستخدما لهذا التطبيق." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2259,8 +2259,9 @@ 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 "" +#, fuzzy +msgid "Notice has no profile." +msgstr "ليس للمستخدم ملف شخصي." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2270,13 +2271,13 @@ msgstr "حالة %1$s في يوم %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "نوع المحتوى " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2429,23 +2430,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "" #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "لا يمكن قراءة دليل السمات: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "لا يمكن الكتابة في دليل الأفتارات: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "لا يمكن الكتابة في دليل الخلفيات: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "لا يمكن قراءة دليل المحليات: %s" #: actions/pathsadminpanel.php:183 @@ -2586,8 +2587,8 @@ msgid "People search" msgstr "بحث في الأشخاص" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "ليس وسم أشخاص صالح: %s" #: actions/peopletag.php:142 @@ -2596,7 +2597,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "محتوى إشعار غير صالح" #: actions/postnotice.php:101 @@ -2737,8 +2739,8 @@ msgid "Settings saved." msgstr "حُفظت الإعدادات." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "وراء حد الصفحة (%s)" #: actions/public.php:92 @@ -3602,7 +3604,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "حد النص الأدنى هو 140 حرفًا." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3690,7 +3692,7 @@ msgid "Unable to save site notice." msgstr "تعذّر حفظ إشعار الموقع." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4042,8 +4044,9 @@ msgid "User is not silenced." msgstr "المستخدم ليس مُسكتًا." #: actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" +#, fuzzy +msgid "No profile ID in request." +msgstr "لا طلب استيثاق." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -5927,6 +5930,10 @@ msgstr "خطأ أثناء إدراج الملف الشخصي الجديد" msgid "Error inserting avatar" msgstr "خطأ في إدراج الأفتار" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "خطأ أثناء تحديث الملف الشخصي البعيد" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "خطأ أثناء إدراج الملف الشخصي البعيد" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 8116964895..f40602019f 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:39+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 22:59:44+0000\n" "Language-Team: Egyptian Spoken Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -87,7 +87,8 @@ msgstr "أرسل" #. 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" +#, fuzzy +msgid "No such page." msgstr "لا صفحه كهذه" #: actions/all.php:75 actions/allrss.php:68 @@ -229,7 +230,7 @@ msgstr "تتطلب هذه الطريقه POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -425,10 +426,9 @@ msgstr "" msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "كنيه غير صالحة: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -445,7 +445,8 @@ msgstr "" #: 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!" +#, fuzzy +msgid "Group not found." msgstr "لم توجد المجموعة!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -634,9 +635,9 @@ msgstr "" msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "لم يوجد" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "لم يوجد." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -697,10 +698,6 @@ msgstr "الإشعارات الموسومه ب%s" msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "لم يوجد." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "لا مرفق كهذا." @@ -731,10 +728,10 @@ 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:106 -msgid "User without matching profile" -msgstr "" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "يوزر من-غير پروفايل زيّه." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -888,7 +885,7 @@ msgstr "رمز التأكيد ليس لك!" #: actions/confirmaddress.php:90 #, php-format -msgid "Unrecognized address type %s" +msgid "Unrecognized address type %s." msgstr "" #: actions/confirmaddress.php:94 @@ -1042,8 +1039,8 @@ msgid "Invalid logo URL." msgstr "مسار شعار غير صالح." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "السمه غير متوفرة: %s" #: actions/designadminpanel.php:375 @@ -1248,6 +1245,11 @@ msgstr "استخدم هذا النموذج لتعديل المجموعه." msgid "description is too long (max %d chars)." msgstr "" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "كنيه غير صالحة: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "تعذر تحديث المجموعه." @@ -1544,8 +1546,9 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "خطأ أثناء تحديث الملف الشخصى البعيد" #: actions/getfile.php:79 @@ -1665,10 +1668,6 @@ 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 "" @@ -1895,9 +1894,9 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "يجب أن تلج لتُعدّل المجموعات." #: actions/invite.php:72 #, php-format @@ -2094,7 +2093,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "%1$s مش نافع يبقى ادارى لجروپ %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "لا حاله حالية" #: actions/newapplication.php:52 @@ -2252,11 +2252,11 @@ msgid "You are not a user of that application." msgstr "انت مش يوزر للapplication دى." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2265,8 +2265,9 @@ 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 "" +#, fuzzy +msgid "Notice has no profile." +msgstr "ليس للمستخدم ملف شخصى." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2276,13 +2277,13 @@ msgstr "" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "نوع المحتوى " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2435,23 +2436,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "" #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "لا يمكن قراءه دليل السمات: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "لا يمكن الكتابه فى دليل الأفتارات: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "لا يمكن الكتابه فى دليل الخلفيات: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "لا يمكن قراءه دليل المحليات: %s" #: actions/pathsadminpanel.php:183 @@ -2590,8 +2591,8 @@ msgid "People search" msgstr "بحث فى الأشخاص" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "ليس وسم أشخاص صالح: %s" #: actions/peopletag.php:142 @@ -2600,7 +2601,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "محتوى إشعار غير صالح" #: actions/postnotice.php:101 @@ -2740,8 +2742,8 @@ msgid "Settings saved." msgstr "حُفظت الإعدادات." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "وراء حد الصفحه (%s)" #: actions/public.php:92 @@ -3590,7 +3592,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "حد النص الأدنى هو 140 حرفًا." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3682,7 +3684,7 @@ msgid "Unable to save site notice." msgstr "مشكله أثناء حفظ الإشعار." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4037,8 +4039,9 @@ msgid "User is not silenced." msgstr "المستخدم ليس مُسكتًا." #: actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" +#, fuzzy +msgid "No profile ID in request." +msgstr "ما فيش طلب تسجيل دخول مطلوب." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -5885,6 +5888,10 @@ msgstr "خطأ أثناء إدراج الملف الشخصى الجديد" msgid "Error inserting avatar" msgstr "خطأ فى إدراج الأفتار" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "خطأ أثناء تحديث الملف الشخصى البعيد" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "خطأ أثناء إدراج الملف الشخصى البعيد" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 9480e8d6da..ace8bc976a 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:42+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 22:59:48+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -81,7 +81,8 @@ msgstr "Запазване" #. 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" +#, fuzzy +msgid "No such page." msgstr "Няма такака страница." #: actions/all.php:75 actions/allrss.php:68 @@ -223,7 +224,7 @@ msgstr "Този метод изисква заявка POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -426,10 +427,9 @@ msgstr "Името на местоположението е твърде дъл msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Неправилен псевдоним: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -446,7 +446,8 @@ msgstr "" #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Групата не е открита." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -636,8 +637,8 @@ msgstr "Не е открита бележка с такъв идентифика msgid "That's too long. Max notice size is %d chars." msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." -#: actions/apistatusesupdate.php:202 -msgid "Not found" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." msgstr "Не е открито." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 @@ -699,10 +700,6 @@ msgstr "Бележки с етикет %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не е открито." - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -735,9 +732,10 @@ msgstr "" "Можете да качите личен аватар тук. Максималната големина на файла е %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "Потребител без съответстващ профил" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -891,8 +889,8 @@ msgid "That confirmation code is not for you!" msgstr "Този код за потвърждение не е за вас!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Неразпознат вид адрес %s" #: actions/confirmaddress.php:94 @@ -1049,7 +1047,7 @@ msgstr "Неправилен размер." #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Страницата не е достъпна във вида медия, който приемате" #: actions/designadminpanel.php:375 @@ -1263,6 +1261,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "Описанието е твърде дълго (до %d символа)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неправилен псевдоним: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Грешка при обновяване на групата." @@ -1572,8 +1575,9 @@ msgstr "Грешка при преобразуване на tokens за одоб msgid "Remote service uses unknown version of OMB protocol." msgstr "Непозната версия на протокола OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Грешка при обновяване на отдалечен профил" #: actions/getfile.php:79 @@ -1699,11 +1703,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Може да качите лого за групата ви." -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Потребител без съответстващ профил" - #: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." @@ -1947,8 +1946,8 @@ msgid "Invites have been disabled." msgstr "Поканите са изключени." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "За да каните хора в %s, трябва да сте влезли." #: actions/invite.php:72 @@ -2181,8 +2180,9 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "За да редактирате групата, трябва да сте й администратор." #: actions/microsummary.php:69 -msgid "No current status" -msgstr "" +#, fuzzy +msgid "No current status." +msgstr "Няма резултати." #: actions/newapplication.php:52 msgid "New Application" @@ -2348,11 +2348,11 @@ msgid "You are not a user of that application." msgstr "Не членувате в тази група." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2361,7 +2361,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Бележката няма профил" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2372,13 +2373,13 @@ msgstr "Бележка на %1$s от %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "вид съдържание " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2539,23 +2540,23 @@ msgstr "Пътища и сървърни настройки за тази инс #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Страницата не е достъпна във вида медия, който приемате" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Страницата не е достъпна във вида медия, който приемате" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Директория на фона" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Страницата не е достъпна във вида медия, който приемате" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2696,7 +2697,7 @@ msgstr "Търсене на хора" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "Това не е правилен адрес на е-поща." #: actions/peopletag.php:142 @@ -2705,7 +2706,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Бележки с етикет %s, страница %d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Невалидно съдържание на бележка" #: actions/postnotice.php:101 @@ -2849,7 +2851,7 @@ msgstr "Настройките са запазени." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3722,7 +3724,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Минималното ограничение на текста е 140 знака." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3814,7 +3816,7 @@ msgid "Unable to save site notice." msgstr "Грешка при записване настройките за Twitter" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4184,7 +4186,7 @@ msgstr "Потребителят не е заглушен." #: actions/unsubscribe.php:77 #, fuzzy -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "Сървърът не е върнал адрес на профила." #: actions/unsubscribe.php:98 @@ -6080,6 +6082,10 @@ msgstr "Грешка при вмъкване на нов профил" msgid "Error inserting avatar" msgstr "Грешка при вмъкване на аватар" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Грешка при обновяване на отдалечен профил" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Грешка при вмъкване на отдалечен профил" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 69c672558b..74e0261ada 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:45+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 22:59:52+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -80,7 +80,8 @@ 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" +#, fuzzy +msgid "No such page." msgstr "N'eus ket eus ar bajenn-se" #: actions/all.php:75 actions/allrss.php:68 @@ -222,7 +223,7 @@ 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" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -421,10 +422,9 @@ msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)." 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\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Alias fall : \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -441,7 +441,8 @@ 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!" +#, fuzzy +msgid "Group not found." msgstr "N'eo ket bet kavet ar strollad !" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -627,9 +628,9 @@ msgstr "N'eo ket bet kavet a statud evit an ID-mañ" 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:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "N'eo ket bet kavet." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -690,10 +691,6 @@ msgstr "Alioù merket gant %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Hizivadennoù merket gant %1$s e %2$s !" -#: 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." @@ -724,10 +721,10 @@ 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:106 -msgid "User without matching profile" -msgstr "Implijer hep profil klotaus" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -880,8 +877,8 @@ 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" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "N'eo ket bet anavezet seurt ar chomlec'h %s" #: actions/confirmaddress.php:94 @@ -1030,8 +1027,8 @@ msgid "Invalid logo URL." msgstr "URL fall evit al logo." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "N'eus ket tu kaout an dodenn : %s" #: actions/designadminpanel.php:375 @@ -1235,6 +1232,11 @@ msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." msgid "description is too long (max %d chars)." msgstr "re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Alias fall : \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Diposubl eo hizivaat ar strollad." @@ -1531,9 +1533,10 @@ msgstr "" 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/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Diposubl eo enrollañ ar profil." #: actions/getfile.php:79 msgid "No such file." @@ -1649,10 +1652,6 @@ 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 "" @@ -1881,9 +1880,9 @@ 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 "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "Rankout a reoc'h bezañ luget evit mont en ur strollad." #: actions/invite.php:72 #, php-format @@ -2088,7 +2087,8 @@ 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" +#, fuzzy +msgid "No current status." msgstr "Statud ebet er mare-mañ" #: actions/newapplication.php:52 @@ -2247,11 +2247,11 @@ 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: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." 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 "" @@ -2260,7 +2260,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "N'en deus ket an ali a profil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2271,13 +2272,13 @@ msgstr "Statud %1$s war %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "seurt an danvez " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2430,23 +2431,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "" #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "N'eus ket tu kaout an dodenn : %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Restroù an avataroù" #: actions/pathsadminpanel.php:169 #, php-format -msgid "Background directory not writable: %s" +msgid "Background directory not writable: %s." msgstr "" #: actions/pathsadminpanel.php:177 #, php-format -msgid "Locales directory not readable: %s" +msgid "Locales directory not readable: %s." msgstr "" #: actions/pathsadminpanel.php:183 @@ -2585,8 +2586,8 @@ msgid "People search" msgstr "Klask tud" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "N'eo ket reizh ar merk-se : %s" #: actions/peopletag.php:142 @@ -2595,7 +2596,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Implijerien bet merket drezo o unan gant %1$s - pajenn %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Danvez direizh an ali" #: actions/postnotice.php:101 @@ -2736,7 +2738,7 @@ msgstr "Enrollet eo bet an arventennoù." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3572,7 +3574,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3661,7 +3663,7 @@ msgid "Unable to save site notice." msgstr "Diposubl eo enrollañ ali al lec'hienn." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4013,7 +4015,8 @@ msgid "User is not silenced." msgstr "" #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "N'eus profil id ebet er reked." #: actions/unsubscribe.php:98 @@ -5814,6 +5817,10 @@ msgstr "" msgid "Error inserting avatar" msgstr "" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 296011994d..cbd785c5f1 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:48+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 22:59:55+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -88,7 +88,8 @@ msgstr "Guardar" #. 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" +#, fuzzy +msgid "No such page." msgstr "No existeix la pàgina." #: actions/all.php:75 actions/allrss.php:68 @@ -233,7 +234,7 @@ msgstr "Aquest mètode requereix POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -444,10 +445,9 @@ msgstr "La ubicació és massa llarga (màx. 255 caràcters)." msgid "Too many aliases! Maximum %d." msgstr "Hi ha massa àlies! Màxim %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "L'àlies no és vàlid «%s»" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -464,7 +464,8 @@ msgstr "L'àlies no pot ser el mateix que el sobrenom." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "No s'ha trobat el grup!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -660,9 +661,9 @@ msgstr "No s'ha trobat cap estatus amb la ID trobada." msgid "That's too long. Max notice size is %d chars." msgstr "Massa llarg. La longitud màxima és de %d caràcters." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "No s'ha trobat" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "No s'ha trobat." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -723,10 +724,6 @@ msgstr "Aviso etiquetats amb %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualitzacions etiquetades amb %1$s el %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "No s'ha trobat." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "No existeix l'adjunció." @@ -758,9 +755,10 @@ msgstr "" "Podeu pujar el vostre avatar personal. La mida màxima del fitxer és %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "Usuari sense perfil coincident" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -917,8 +915,8 @@ msgid "That confirmation code is not for you!" msgstr "Aquest codi de confirmació no és per a tu!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Tipus d'adreça %s desconeguda" #: actions/confirmaddress.php:94 @@ -1079,8 +1077,8 @@ msgid "Invalid logo URL." msgstr "L'URL del logotip no és vàlid." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "El tema no és disponible: %s" #: actions/designadminpanel.php:375 @@ -1296,6 +1294,11 @@ msgstr "Utilitza aquest formulari per editar el grup." msgid "description is too long (max %d chars)." msgstr "la descripció és massa llarga (màx. %d caràcters)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "L'àlies no és vàlid «%s»" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." @@ -1606,8 +1609,9 @@ msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés." msgid "Remote service uses unknown version of OMB protocol." msgstr "Versió desconeguda del protocol OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Error en actualitzar el perfil remot" #: actions/getfile.php:79 @@ -1733,11 +1737,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Pots pujar una imatge de logo per al grup." -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Usuari sense perfil coincident" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Trieu una àrea quadrada de la imatge perquè en sigui el logotip." @@ -1980,8 +1979,8 @@ msgid "Invites have been disabled." msgstr "S'han inhabilitat les invitacions." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo " "%s" @@ -2220,7 +2219,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "No es pot fer %s un administrador del grup %s" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "No té cap estatus ara mateix" #: actions/newapplication.php:52 @@ -2387,11 +2387,11 @@ msgid "You are not a user of that application." msgstr "No sou usuari de l'aplicació." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2400,7 +2400,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Avís sense perfil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2411,13 +2412,13 @@ msgstr "estat de %1$s a %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "tipus de contingut " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2578,23 +2579,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Aquesta pàgina no està disponible en " #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "No es pot escriure al directori de fons: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "No es pot escriure al directori de fons: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Aquesta pàgina no està disponible en " #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2736,8 +2737,8 @@ msgid "People search" msgstr "Cerca de gent" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Etiqueta no vàlida per a la gent: %s" #: actions/peopletag.php:142 @@ -2746,7 +2747,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuaris que s'han etiquetat %s - pàgina %d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "El contingut de l'avís és invàlid" #: actions/postnotice.php:101 @@ -2894,8 +2896,8 @@ msgid "Settings saved." msgstr "Configuració guardada." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Més enllà del límit de la pàgina (%s)" #: actions/public.php:92 @@ -3793,7 +3795,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3887,7 +3889,7 @@ 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" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4266,7 +4268,8 @@ msgid "User is not silenced." msgstr "L'usuari no està silenciat." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "No id en el perfil sol·licitat." #: actions/unsubscribe.php:98 @@ -6167,6 +6170,10 @@ msgstr "Error en inserir el nou perfil" msgid "Error inserting avatar" msgstr "Error en inserir avatar" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Error en actualitzar el perfil remot" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error en inserir perfil remot" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 00ed134a50..b963009c94 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:52+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 22:59:58+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -88,7 +88,7 @@ msgstr "Uložit" #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy -msgid "No such page" +msgid "No such page." msgstr "Žádné takové oznámení." #: actions/all.php:75 actions/allrss.php:68 @@ -232,7 +232,7 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -437,10 +437,9 @@ msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "Neplatná adresa '%s'" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -458,7 +457,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "Žádný požadavek nebyl nalezen!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -655,9 +654,10 @@ msgstr "" msgid "That's too long. Max notice size is %d chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "Žádný požadavek nebyl nalezen!" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -719,11 +719,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "Mikroblog od %s" -#: actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "Žádný požadavek nebyl nalezen!" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -755,10 +750,11 @@ 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:106 -msgid "User without matching profile" -msgstr "" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." +msgstr "Uživatel nemá profil." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -918,8 +914,8 @@ msgid "That confirmation code is not for you!" msgstr "Tento potvrzující kód vám nepatří!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Neznámý typ adresy %s" #: actions/confirmaddress.php:94 @@ -1081,7 +1077,7 @@ msgstr "Neplatná velikost" #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/designadminpanel.php:375 @@ -1298,6 +1294,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Neplatná adresa '%s'" + #: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." @@ -1607,8 +1608,9 @@ msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec." msgid "Remote service uses unknown version of OMB protocol." msgstr "Neznámá verze OMB protokolu." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Chyba při aktualizaci vzdáleného profilu" #: actions/getfile.php:79 @@ -1738,11 +1740,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Uživatel nemá profil." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -1989,9 +1986,9 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "Nelze aktualizovat uživatele" #: actions/invite.php:72 #, php-format @@ -2193,8 +2190,9 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Uživatel nemá profil." #: actions/microsummary.php:69 -msgid "No current status" -msgstr "" +#, fuzzy +msgid "No current status." +msgstr "Žádné výsledky." #: actions/newapplication.php:52 #, fuzzy @@ -2356,11 +2354,11 @@ msgid "You are not a user of that application." msgstr "Neodeslal jste nám profil" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2369,7 +2367,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Sdělení nemá profil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2380,13 +2379,13 @@ msgstr "%1 statusů na %2" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "Připojit" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2549,23 +2548,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2716,7 +2715,7 @@ msgstr "Hledání lidí" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "Není platnou mailovou adresou." #: actions/peopletag.php:142 @@ -2725,7 +2724,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Mikroblog od %s" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Neplatný obsah sdělení" #: actions/postnotice.php:101 @@ -2871,7 +2871,7 @@ msgstr "Nastavení uloženo" #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3740,7 +3740,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3833,7 +3833,7 @@ msgid "Unable to save site notice." msgstr "Problém při ukládání sdělení" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4205,7 +4205,7 @@ msgstr "Uživatel nemá profil." #: actions/unsubscribe.php:77 #, fuzzy -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "Nebylo vráceno žádné URL profilu od servu." #: actions/unsubscribe.php:98 @@ -6122,6 +6122,10 @@ msgstr "Chyba při vkládání nového profilu" msgid "Error inserting avatar" msgstr "Chyba při kládání obrázku" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Chyba při aktualizaci vzdáleného profilu" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Chyba při vkládaní vzdáleného profilu" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index babee17fd3..4bd83a2384 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:55+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:01+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -87,7 +87,8 @@ msgstr "Speichern" #. 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" +#, fuzzy +msgid "No such page." msgstr "Seite nicht vorhanden" #: actions/all.php:75 actions/allrss.php:68 @@ -239,7 +240,7 @@ msgstr "Diese Methode benötigt ein POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -443,10 +444,9 @@ msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." msgid "Too many aliases! Maximum %d." msgstr "Zu viele Pseudonyme! Maximale Anzahl ist %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Ungültiges Stichwort: „%s“" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -463,7 +463,8 @@ msgstr "Alias kann nicht das gleiche wie der Spitznamen sein." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Gruppe nicht gefunden!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -655,9 +656,9 @@ msgid "That's too long. Max notice size is %d chars." msgstr "" "Das war zu lang. Die Länge einer Nachricht ist auf %d Zeichen beschränkt." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Nicht gefunden" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Nicht gefunden." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -720,10 +721,6 @@ msgstr "Nachrichten, die mit %s getagt sind" msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualisierungen mit %1$s getagt auf %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nicht gefunden." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Kein solcher Anhang." @@ -755,9 +752,9 @@ msgstr "" "Du kannst dein persönliches Avatar hochladen. Die maximale Dateigröße ist %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." msgstr "Benutzer ohne passendes Profil" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -914,8 +911,8 @@ msgid "That confirmation code is not for you!" msgstr "Dieser Bestätigungscode ist nicht für dich!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Nicht erkannter Adresstyp %s" #: actions/confirmaddress.php:94 @@ -1070,8 +1067,8 @@ msgid "Invalid logo URL." msgstr "Ungültige URL für das Logo" #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Theme nicht verfügbar: %s" #: actions/designadminpanel.php:375 @@ -1278,6 +1275,11 @@ msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." msgid "description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ungültiges Stichwort: „%s“" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." @@ -1589,8 +1591,9 @@ msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." msgid "Remote service uses unknown version of OMB protocol." msgstr "Service nutzt unbekannte OMB-Protokollversion." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Fehler beim Aktualisieren des entfernten Profils" #: actions/getfile.php:79 @@ -1715,10 +1718,6 @@ msgstr "" "Du kannst ein Logo für Deine Gruppe hochladen. Die maximale Dateigröße ist %" "s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Benutzer ohne passendes Profil" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Wähle eine quadratische Fläche aus dem Bild, um das Logo zu speichern." @@ -1971,8 +1970,8 @@ msgid "Invites have been disabled." msgstr "Einladungen wurden deaktiviert." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen" #: actions/invite.php:72 @@ -2207,7 +2206,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Konnte %1$s nicht zum Administrator der Gruppe %2$s machen" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Kein aktueller Status" #: actions/newapplication.php:52 @@ -2377,11 +2377,11 @@ msgid "You are not a user of that application." msgstr "Du bist kein Benutzer dieses Programms." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Kann Zugang dieses Programm nicht entfernen: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" "Du hast noch kein Programm die Erlaubnis gegeben dein Profil zu benutzen." @@ -2392,7 +2392,8 @@ msgstr "" "Entwickler können die Registrierungseinstellungen ihrer Programme ändern " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Nachricht hat kein Profil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2403,13 +2404,13 @@ msgstr "%1$s Status auf %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "Content-Typ " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2563,23 +2564,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Pfad- und Serverangaben für diese StatusNet Seite." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Theme-Verzeichnis nicht lesbar: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Avatar-Verzeichnis ist nicht beschreibbar: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Hintergrund Verzeichnis ist nicht beschreibbar: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Sprachverzeichnis nicht lesbar: %s" #: actions/pathsadminpanel.php:183 @@ -2721,8 +2722,8 @@ msgid "People search" msgstr "Suche nach anderen Nutzern" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Ungültiger Personen-Tag: %s" #: actions/peopletag.php:142 @@ -2731,7 +2732,8 @@ 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:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Ungültiger Nachrichteninhalt" #: actions/postnotice.php:101 @@ -2880,8 +2882,8 @@ msgid "Settings saved." msgstr "Einstellungen gespeichert." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Jenseits des Seitenlimits (%s)" #: actions/public.php:92 @@ -3802,7 +3804,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Minimale Textlänge ist 0 Zeichen (unbegrenzt)" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "Duplikatlimit muss mehr als 1 Sekunde sein" #: actions/siteadminpanel.php:221 @@ -3896,7 +3899,8 @@ msgid "Unable to save site notice." msgstr "Konnte Seitenbenachrichtigung nicht speichern" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "Maximale Länge von Systembenachrichtigungen ist 255 Zeichen" #: actions/sitenoticeadminpanel.php:176 @@ -4269,7 +4273,8 @@ msgid "User is not silenced." msgstr "Der Benutzer ist nicht ruhig gestellt." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Keine Profil-ID in der Anfrage." #: actions/unsubscribe.php:98 @@ -6240,6 +6245,10 @@ msgstr "Neues Profil konnte nicht angelegt werden" msgid "Error inserting avatar" msgstr "Fehler beim Einfügen des Avatars" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Fehler beim Aktualisieren des entfernten Profils" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Fehler beim Einfügen des entfernten Profils" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index fadc69bb54..3725022918 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:26:58+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:04+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -82,7 +82,8 @@ msgstr "Αποθήκευση" #. 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" +#, fuzzy +msgid "No such page." msgstr "Δεν υπάρχει τέτοια σελίδα" #: actions/all.php:75 actions/allrss.php:68 @@ -229,7 +230,7 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -433,11 +434,10 @@ msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 2 msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" -msgstr "" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Μήνυμα" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -453,7 +453,8 @@ msgstr "" #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Η ομάδα δεν βρέθηκε!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -644,9 +645,9 @@ msgstr "" msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Δεν βρέθηκε" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -707,10 +708,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "" - #: actions/attachment.php:73 msgid "No such attachment." msgstr "" @@ -741,9 +738,9 @@ 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:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -901,7 +898,7 @@ msgstr "" #: actions/confirmaddress.php:90 #, php-format -msgid "Unrecognized address type %s" +msgid "Unrecognized address type %s." msgstr "" #: actions/confirmaddress.php:94 @@ -1061,7 +1058,7 @@ msgstr "" #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: actions/designadminpanel.php:375 @@ -1276,6 +1273,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + #: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." @@ -1585,9 +1587,10 @@ msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε to 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/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Απέτυχε η αποθήκευση του προφίλ." #: actions/getfile.php:79 #, fuzzy @@ -1709,10 +1712,6 @@ 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 "" @@ -1950,9 +1949,9 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/invite.php:72 #, php-format @@ -2153,7 +2152,7 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/microsummary.php:69 -msgid "No current status" +msgid "No current status." msgstr "" #: actions/newapplication.php:52 @@ -2313,11 +2312,11 @@ msgid "You are not a user of that application." msgstr "Δεν είστε μέλος καμίας ομάδας." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2326,8 +2325,9 @@ 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 "" +#, fuzzy +msgid "Notice has no profile." +msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2337,13 +2337,13 @@ msgstr "" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "Σύνδεση" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2504,23 +2504,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2666,7 +2666,7 @@ msgstr "" #: actions/peopletag.php:68 #, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "" #: actions/peopletag.php:142 @@ -2675,8 +2675,9 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "" #: actions/postnotice.php:95 -msgid "Invalid notice content" -msgstr "" +#, fuzzy +msgid "Invalid notice content." +msgstr "Μήνυμα" #: actions/postnotice.php:101 #, php-format @@ -2822,7 +2823,7 @@ msgstr "" #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3692,7 +3693,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3782,7 +3783,7 @@ msgid "Unable to save site notice." msgstr "" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4146,7 +4147,7 @@ msgid "User is not silenced." msgstr "" #: actions/unsubscribe.php:77 -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "" #: actions/unsubscribe.php:98 @@ -6001,6 +6002,10 @@ msgstr "" msgid "Error inserting avatar" msgstr "" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index c84e1d647e..c3eaf8d37c 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:01+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:08+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -83,7 +83,8 @@ msgstr "Save" #. 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" +#, fuzzy +msgid "No such page." msgstr "No such page" #: actions/all.php:75 actions/allrss.php:68 @@ -230,9 +231,10 @@ msgid "This method requires a POST." msgstr "This method requires a POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none" @@ -434,10 +436,9 @@ msgstr "Location is too long (max 255 chars)." msgid "Too many aliases! Maximum %d." msgstr "Too many aliases! Maximum %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Invalid alias: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -454,7 +455,8 @@ msgstr "Alias can't be the same as nickname." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Group not found!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -645,9 +647,9 @@ msgstr "No status with that ID found." msgid "That's too long. Max notice size is %d chars." msgstr "That's too long. Max notice size is %d chars." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Not found" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Not found." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -708,10 +710,6 @@ msgstr "Notices tagged with %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates tagged with %1$s on %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Not found." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "No such attachment." @@ -742,10 +740,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "You can upload your personal avatar. The maximum file size is %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "User without matching profile." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -901,8 +899,8 @@ msgid "That confirmation code is not for you!" msgstr "That confirmation code is not for you!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Unrecognised address type %s" #: actions/confirmaddress.php:94 @@ -1058,8 +1056,8 @@ msgid "Invalid logo URL." msgstr "nvalid logo URL." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Theme not available: %s" #: actions/designadminpanel.php:375 @@ -1265,6 +1263,11 @@ msgstr "Use this form to edit the group." msgid "description is too long (max %d chars)." msgstr "description is too long (max %d chars)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Invalid alias: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Could not update group." @@ -1570,8 +1573,9 @@ msgstr "Couldn't convert request tokens to access tokens." msgid "Remote service uses unknown version of OMB protocol." msgstr "Remote service uses unknown version of OMB protocol." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Error updating remote profile." #: actions/getfile.php:79 @@ -1697,10 +1701,6 @@ msgid "" msgstr "" "You can upload a logo image for your group. The maximum file size is %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "User without matching profile." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Pick a square area of the image to be the logo." @@ -1943,8 +1943,8 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "You must be logged in to invite other users to use %s" #: actions/invite.php:72 @@ -2175,7 +2175,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Can't make %1$s an admin for group %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "No current status" #: actions/newapplication.php:52 @@ -2340,11 +2341,11 @@ msgid "You are not a user of that application." msgstr "You are not a user of that application." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "You have not authorised any applications to use your account." @@ -2353,7 +2354,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Notice has no profile" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2364,13 +2366,13 @@ msgstr "%1$s's status on %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "content type " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2523,24 +2525,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "" #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Theme directory not readable: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Theme directory not readable: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Theme directory not readable: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Theme directory not readable: %s" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2680,8 +2682,8 @@ msgid "People search" msgstr "People Search" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Not a valid people tag: %s" #: actions/peopletag.php:142 @@ -2690,7 +2692,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Users self-tagged with %1$s - page %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Invalid notice content" #: actions/postnotice.php:101 @@ -2834,7 +2837,7 @@ msgstr "Settings saved." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3728,7 +3731,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Minimum text limit is 140 characters." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3820,7 +3823,7 @@ msgid "Unable to save site notice." msgstr "Unable to save your design settings!" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4184,7 +4187,8 @@ msgid "User is not silenced." msgstr "User is not silenced." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "No profile id in request." #: actions/unsubscribe.php:98 @@ -6056,6 +6060,10 @@ msgstr "Error inserting new profile." msgid "Error inserting avatar" msgstr "Error inserting avatar." +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Error updating remote profile." + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error inserting remote profile." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 39b85e68d6..aa477f4d80 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:04+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:11+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -84,7 +84,8 @@ msgstr "Guardar" #. 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" +#, fuzzy +msgid "No such page." msgstr "No existe tal página" #: actions/all.php:75 actions/allrss.php:68 @@ -232,9 +233,10 @@ msgid "This method requires a POST." msgstr "Este método requiere un POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Tienes que especificar un parámetro llamdao 'dispositivo' con un valor a " "elegir entre: sms, im, ninguno" @@ -436,10 +438,9 @@ msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." msgid "Too many aliases! Maximum %d." msgstr "¡Muchos seudónimos! El máximo es %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Alias inválido: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -456,7 +457,8 @@ msgstr "El alias no puede ser el mismo que el usuario." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "¡No se ha encontrado el grupo!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -650,9 +652,9 @@ msgstr "No hay estado para ese ID" msgid "That's too long. Max notice size is %d chars." msgstr "La entrada es muy larga. El tamaño máximo es de %d caracteres." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "No encontrado" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "No encontrado." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -715,10 +717,6 @@ msgstr "Avisos marcados con %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizaciones etiquetadas con %1$s en %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "No encontrado." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "No existe tal archivo adjunto." @@ -749,10 +747,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Usuario sin perfil equivalente" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Usuario sin perfil coincidente." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -908,8 +906,8 @@ msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación no es para ti!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Tipo de dirección %s desconocida" #: actions/confirmaddress.php:94 @@ -1065,8 +1063,8 @@ msgid "Invalid logo URL." msgstr "URL de logotipo inválido." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Tema no disponible" #: actions/designadminpanel.php:375 @@ -1272,6 +1270,11 @@ msgstr "Usa este formulario para editar el grupo." msgid "description is too long (max %d chars)." msgstr "La descripción es muy larga (máx. %d caracteres)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Alias inválido: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "No se pudo actualizar el grupo." @@ -1582,8 +1585,9 @@ msgstr "No se pudo convertir el token de solicitud en token de acceso." msgid "Remote service uses unknown version of OMB protocol." msgstr "El servicio remoto utiliza una versión desconocida del protocolo OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Error al actualizar el perfil remoto" #: actions/getfile.php:79 @@ -1709,10 +1713,6 @@ msgstr "" "Puedes subir una imagen de logo para tu grupo. El tamaño máximo del archivo " "debe ser %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Usuario sin perfil coincidente." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Elige un área cuadrada de la imagen para que sea tu logo." @@ -1963,8 +1963,8 @@ msgid "Invites have been disabled." msgstr "Se han inhabilitado las invitaciones." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Debes estar conectado para invitar otros usuarios a usar %s" #: actions/invite.php:72 @@ -2197,7 +2197,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "No es posible convertir a %1$s en administrador del grupo %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "No existe estado actual" #: actions/newapplication.php:52 @@ -2364,11 +2365,11 @@ msgid "You are not a user of that application." msgstr "No eres un usuario de esa aplicación." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "No se puede revocar el acceso para la aplicación: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "No has autorizado a ninguna aplicación utilizar tu cuenta." @@ -2379,7 +2380,8 @@ msgstr "" "aplicaciones " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Aviso sin perfil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2390,13 +2392,13 @@ msgstr "estado de %1$s en %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "tipo de contenido " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2551,23 +2553,23 @@ msgstr "" "Configuración de la ruta de acceso y del servidor de este sitio StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Directorio de temas ilegible: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Directorio de imágenes no editable: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Directorio de fondo ilegible: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Directorio de configuración regional ilegible: $s" #: actions/pathsadminpanel.php:183 @@ -2708,8 +2710,8 @@ msgid "People search" msgstr "Buscador de gente" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "No es una etiqueta válida para personas: %s" #: actions/peopletag.php:142 @@ -2718,7 +2720,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios auto etiquetados con %1$s - página %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "El contenido del aviso es inválido" #: actions/postnotice.php:101 @@ -2864,8 +2867,8 @@ msgid "Settings saved." msgstr "Se guardó configuración." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Más allá del límite de páginas (%s)" #: actions/public.php:92 @@ -3788,7 +3791,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "El límite mínimo de texto es 0 (sin límite)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "El límite de duplicación debe ser de 1 o más segundos." #: actions/siteadminpanel.php:221 @@ -3878,7 +3882,8 @@ msgid "Unable to save site notice." msgstr "No se pudo guarda el aviso del sitio." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "" "La longitud máxima para el aviso que va a lo ancho del sitio es de 255 " "caracteres" @@ -4255,7 +4260,8 @@ msgid "User is not silenced." msgstr "El usuario no ha sido silenciado." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "No hay id de perfil solicitado." #: actions/unsubscribe.php:98 @@ -6144,6 +6150,10 @@ msgstr "Error al insertar el nuevo perfil" msgid "Error inserting avatar" msgstr "Error al insertar la imagen" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Error al actualizar el perfil remoto" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error al insertar perfil remoto" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 643cf3d284..17b8d6033c 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-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:14+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:23+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -83,7 +83,8 @@ msgstr "ذخیره" #. 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" +#, fuzzy +msgid "No such page." msgstr "چنین صفحه‌ای وجود ندارد" #: actions/all.php:75 actions/allrss.php:68 @@ -229,9 +230,10 @@ msgid "This method requires a POST." msgstr "برای استفاده از این روش باید اطلاعات را به صورت پست بفرستید" #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "شما باید یک پارامتر با نام device و مقدار sms، im یا none مشخص کنید." #: actions/apiaccountupdatedeliverydevice.php:132 @@ -428,10 +430,9 @@ msgstr "مکان طولانی است (حداکثر ۲۵۵ حرف)" msgid "Too many aliases! Maximum %d." msgstr "نام‌های مستعار بسیار زیاد هستند! حداکثر %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "نام‌مستعار غیر مجاز: «%s»" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -448,7 +449,8 @@ msgstr "نام و نام مستعار شما نمی تواند یکی باشد . #: 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!" +#, fuzzy +msgid "Group not found." msgstr "گروه یافت نشد!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -638,9 +640,9 @@ msgstr "هیچ وضعیتی با آن شناسه یافت نشد." msgid "That's too long. Max notice size is %d chars." msgstr "خیلی طولانی است. حداکثر طول مجاز پیام %d حرف است." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "یافت نشد" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "یافت نشد." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -701,10 +703,6 @@ msgstr "پیام‌هایی که با %s نشانه گزاری شده اند." msgid "Updates tagged with %1$s on %2$s!" msgstr "پیام‌های نشانه گزاری شده با %1$s در %2$s" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "یافت نشد." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "چنین پیوستی وجود ندارد." @@ -736,9 +734,10 @@ msgstr "" "شما می‌توانید چهرهٔ شخصی خود را بارگذاری کنید. حداکثر اندازه پرونده %s است." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "کاربر بدون مشخصات" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -896,8 +895,8 @@ msgid "That confirmation code is not for you!" msgstr "آن کد تصدیق برای شما نیست!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "نوع نشانی نامشخص است %s" #: actions/confirmaddress.php:94 @@ -1060,8 +1059,8 @@ msgid "Invalid logo URL." msgstr "نشانی اینترنتی نشان نامعتبر است." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "پوسته در دسترس نمی‌باشد: %s" #: actions/designadminpanel.php:375 @@ -1277,6 +1276,11 @@ msgstr "از این روش برای ویرایش گروه استفاده کنی msgid "description is too long (max %d chars)." msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "نام‌مستعار غیر مجاز: «%s»" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." @@ -1582,8 +1586,9 @@ msgstr "نمی‌توان نشانه‌ی درخواست شما را به نشا msgid "Remote service uses unknown version of OMB protocol." msgstr "خدمات مورد نظر از نسخه‌ی نا مفهومی از قرارداد OMB استفاده می‌کند." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "اشکال در به روز کردن کاربر دوردست." #: actions/getfile.php:79 @@ -1703,11 +1708,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "شما می‌توانید یک نشان برای گروه خود با بیشینه حجم %s بفرستید." -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "کاربر بدون مشخصات" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "یک ناحیه‌ی مربع از تصویر را انتخاب کنید تا به عنوان نشان باشد." @@ -1954,8 +1954,8 @@ msgid "Invites have been disabled." msgstr "دعوت‌کردن از کار انداخته شده‌است." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "شما برای دعوت دیگران برای استفاده از %s باید وارد شودید." #: actions/invite.php:72 @@ -2160,7 +2160,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "نمی‌توان %s را مدیر گروه %s کرد." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "بدون وضعیت فعلی" #: actions/newapplication.php:52 @@ -2332,11 +2333,11 @@ msgid "You are not a user of that application." msgstr "شما یک کاربر این گروه نیستید." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2345,7 +2346,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "ابن خبر ذخیره ای ندارد ." #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2356,13 +2358,13 @@ msgstr "وضعیت %1$s در %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "نوع محتوا " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2522,23 +2524,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "تنظیمات و نشانی محلی این سایت استاتوس‌نتی" #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "شاخه‌ی پوسته‌ها خواندنی نیست: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "شاخه‌ی چهره‌ها نوشتنی نیست: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "شاخه‌ی پس زمینه‌ها نوشتنی نیست: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "پوشه‌ی تنظیمات محلی خواندنی نیست: %s" #: actions/pathsadminpanel.php:183 @@ -2680,8 +2682,8 @@ msgid "People search" msgstr "جست‌وجوی کاربران" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "یک برچسب کاربری معتبر نیست: %s" #: actions/peopletag.php:142 @@ -2690,7 +2692,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "کاربران خود برچسب‌گذاری شده با %s - صفحهٔ %d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "محتوای آگهی نامعتبر" #: actions/postnotice.php:101 @@ -2833,7 +2836,7 @@ msgstr "تنظیمات ذخیره شد." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3692,7 +3695,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3786,7 +3789,7 @@ msgid "Unable to save site notice." msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4146,8 +4149,9 @@ msgid "User is not silenced." msgstr "کاربر ساکت نشده است." #: actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" +#, fuzzy +msgid "No profile ID in request." +msgstr "کاربری با چنین شناسه‌ای وجود ندارد." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -6002,6 +6006,10 @@ msgstr "خطا در درج مشخصات جدید" msgid "Error inserting avatar" msgstr "" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "اشکال در به روز کردن کاربر دوردست." + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 911eae9e4c..e834d64379 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:11+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:20+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -89,7 +89,8 @@ msgstr "Tallenna" #. 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" +#, fuzzy +msgid "No such page." msgstr "Sivua ei ole." #: actions/all.php:75 actions/allrss.php:68 @@ -238,7 +239,7 @@ msgstr "Tämä metodi edellyttää POST sanoman." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -447,10 +448,9 @@ msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." msgid "Too many aliases! Maximum %d." msgstr "Liikaa aliaksia. Maksimimäärä on %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Virheellinen alias: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -467,7 +467,8 @@ msgstr "Alias ei voi olla sama kuin ryhmätunnus." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Ryhmää ei löytynyt!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -663,9 +664,9 @@ msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." msgid "That's too long. Max notice size is %d chars." msgstr "Päivitys on liian pitkä. Maksimipituus on %d merkkiä." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Ei löytynyt" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Ei löytynyt." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -727,10 +728,6 @@ msgstr "Päivitykset joilla on tagi %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Ei löytynyt." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Liitettä ei ole." @@ -761,9 +758,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "Käyttäjälle ei löydy profiilia" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -918,8 +916,8 @@ msgid "That confirmation code is not for you!" msgstr "Tämä vahvistuskoodi ei ole sinun!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Tuntematon osoitetyyppi %s " #: actions/confirmaddress.php:94 @@ -1082,7 +1080,7 @@ msgstr "Koko ei kelpaa." #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Pikaviestin ei ole käytettävissä." #: actions/designadminpanel.php:375 @@ -1305,6 +1303,11 @@ msgstr "Käytä tätä lomaketta muokataksesi ryhmää." msgid "description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max %d merkkiä)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Virheellinen alias: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." @@ -1618,8 +1621,9 @@ msgstr "Ei voitu muuttaa request tokeneita access tokeneiksi." msgid "Remote service uses unknown version of OMB protocol." msgstr "Tuntematon OMB-protokollan versio." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Virhe tapahtui etäprofiilin päivittämisessä" #: actions/getfile.php:79 @@ -1742,11 +1746,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s." -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Käyttäjälle ei löydy profiilia" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Valitse neliön muotoinen alue kuvasta logokuvaksi" @@ -1990,8 +1989,8 @@ msgid "Invites have been disabled." msgstr "Kutsut ovat pois käytöstä." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "Sinun täytyy olla kirjautuneena sisään kutsuaksesi uusia käyttäjiä palveluun " "%s" @@ -2230,7 +2229,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Ei voitu tehdä käyttäjästä %s ylläpitäjää ryhmään %s" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Ei nykyistä tilatietoa" #: actions/newapplication.php:52 @@ -2401,11 +2401,11 @@ msgid "You are not a user of that application." msgstr "Sinä et kuulu tähän ryhmään." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2414,7 +2414,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Päivitykselle ei ole profiilia" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2425,13 +2426,13 @@ msgstr "Käyttäjän %1$s päivitys %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "Yhdistä" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2592,23 +2593,23 @@ msgstr "Polut ja palvelin asetukset tälle StatusNet palvelulle." #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Pikaviestin ei ole käytettävissä." #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Pikaviestin ei ole käytettävissä." #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Taustakuvan hakemisto" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Pikaviestin ei ole käytettävissä." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2762,8 +2763,8 @@ msgid "People search" msgstr "Etsi ihmisiä" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Ei sallittu henkilötagi: %s" #: actions/peopletag.php:142 @@ -2772,7 +2773,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Päivityksen sisältö ei kelpaa" #: actions/postnotice.php:101 @@ -2922,7 +2924,7 @@ msgstr "Asetukset tallennettu." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3827,7 +3829,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3922,7 +3924,7 @@ msgid "Unable to save site notice." msgstr "Twitter-asetuksia ei voitu tallentaa!" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4298,7 +4300,8 @@ msgid "User is not silenced." msgstr "Käyttäjällä ei ole profiilia." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Ei profiili id:tä kyselyssä." #: actions/unsubscribe.php:98 @@ -6230,6 +6233,10 @@ msgstr "Virhe tapahtui uuden profiilin lisäämisessä" msgid "Error inserting avatar" msgstr "Virhe tapahtui profiilikuvan lisäämisessä" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Virhe tapahtui etäprofiilin päivittämisessä" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Virhe tapahtui uuden etäprofiilin lisäämisessä" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index e0b56a40bc..9ad079a651 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:17+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:26+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -85,7 +85,8 @@ msgstr "Enregistrer" #. 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" +#, fuzzy +msgid "No such page." msgstr "Page non trouvée" #: actions/all.php:75 actions/allrss.php:68 @@ -234,9 +235,10 @@ msgid "This method requires a POST." msgstr "Ce processus requiert un POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Vous devez spécifier un paramètre « device » avec une des valeurs suivantes : " "sms, im, none" @@ -440,10 +442,9 @@ msgstr "Emplacement trop long (maximum de 255 caractères)." msgid "Too many aliases! Maximum %d." msgstr "Trop d’alias ! Maximum %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Alias invalide : « %s »" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -460,7 +461,8 @@ msgstr "L’alias ne peut pas être le même que le pseudo." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Groupe non trouvé !" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -658,9 +660,9 @@ msgstr "Aucun statut trouvé avec cet identifiant." msgid "That's too long. Max notice size is %d chars." msgstr "C’est trop long ! La taille maximale de l’avis est de %d caractères." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Non trouvé" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non trouvé." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -723,10 +725,6 @@ msgstr "Avis marqués avec %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Mises à jour marquées avec %1$s dans %2$s !" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non trouvé." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Pièce jointe non trouvée." @@ -759,10 +757,10 @@ msgstr "" "taille maximale du fichier est de %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Utilisateur sans profil correspondant" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Utilisateur sans profil correspondant." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -917,8 +915,8 @@ msgid "That confirmation code is not for you!" msgstr "Ce code de confirmation n’est pas pour vous !" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Type d’adresse non reconnu : %s" #: actions/confirmaddress.php:94 @@ -1074,8 +1072,8 @@ msgid "Invalid logo URL." msgstr "URL du logo invalide." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Le thème n’est pas disponible : %s" #: actions/designadminpanel.php:375 @@ -1281,6 +1279,11 @@ msgstr "Remplissez ce formulaire pour modifier les options du groupe." msgid "description is too long (max %d chars)." msgstr "la description est trop longue (%d caractères maximum)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Alias invalide : « %s »" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." @@ -1589,8 +1592,9 @@ msgstr "Impossible de convertir le jeton de requête en jeton d’accès." msgid "Remote service uses unknown version of OMB protocol." msgstr "Le service distant utilise une version inconnue du protocole OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Erreur lors de la mise à jour du profil distant" #: actions/getfile.php:79 @@ -1715,10 +1719,6 @@ msgstr "" "Vous pouvez choisir un logo pour votre groupe. La taille maximale du fichier " "est de %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Utilisateur sans profil correspondant." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Sélectionnez une zone de forme carrée sur l’image qui sera le logo." @@ -1974,8 +1974,8 @@ msgid "Invites have been disabled." msgstr "Les invitations ont été désactivées." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "Vous devez ouvrir une session pour inviter d’autres utilisateurs dans %s" @@ -2217,7 +2217,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Impossible de rendre %1$s administrateur du groupe %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Aucun statut actuel" #: actions/newapplication.php:52 @@ -2385,11 +2386,11 @@ msgid "You are not a user of that application." msgstr "Vous n’êtes pas un utilisateur de cette application." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Impossible d’annuler l’accès de l’application : " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Vous n’avez autorisé aucune application à utiliser votre compte." @@ -2400,7 +2401,8 @@ msgstr "" "applications " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "L’avis n’a pas de profil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2411,13 +2413,13 @@ msgstr "Statut de %1$s sur %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "type de contenu " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2571,23 +2573,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Paramètres de chemin et serveur pour ce site StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Dossier des thème non lisible : %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Dossier des avatars non inscriptible : %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Dossier des arrière plans non inscriptible : %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Dossier des paramètres régionaux non lisible : %s" #: actions/pathsadminpanel.php:183 @@ -2729,8 +2731,8 @@ msgid "People search" msgstr "Recherche de personnes" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Cette marque est invalide : %s" #: actions/peopletag.php:142 @@ -2739,7 +2741,8 @@ 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:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Contenu de l’avis invalide" #: actions/postnotice.php:101 @@ -2887,8 +2890,8 @@ msgid "Settings saved." msgstr "Préférences enregistrées." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Au-delà de la limite de page (%s)" #: actions/public.php:92 @@ -3816,7 +3819,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "La limite minimale de texte est de 0 caractères (illimité)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "La limite de doublon doit être d’une seconde ou plus." #: actions/siteadminpanel.php:221 @@ -3908,7 +3912,8 @@ msgid "Unable to save site notice." msgstr "Impossible d'enregistrer l'avis du site." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "La longueur maximale pour l'avis du site est de 255 caractères" #: actions/sitenoticeadminpanel.php:176 @@ -4287,7 +4292,8 @@ msgid "User is not silenced." msgstr "L’utilisateur n’est pas réduit au silence." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Aucune identité de profil dans la requête." #: actions/unsubscribe.php:98 @@ -6275,6 +6281,10 @@ msgstr "Erreur lors de l’insertion du nouveau profil" msgid "Error inserting avatar" msgstr "Erreur lors de l’insertion de l’avatar" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Erreur lors de la mise à jour du profil distant" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erreur lors de l’insertion du profil distant" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index b101350c2b..4dbaf1e98c 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:21+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:29+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -89,7 +89,7 @@ msgstr "Gardar" #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy -msgid "No such page" +msgid "No such page." msgstr "Non existe a etiqueta." #: actions/all.php:75 actions/allrss.php:68 @@ -233,7 +233,7 @@ msgstr "Este método require un POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -444,10 +444,9 @@ msgstr "A localización é demasiado longa (max 255 car.)." msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "Etiqueta inválida: '%s'" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -465,7 +464,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "Método da API non atopado" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -661,8 +660,8 @@ msgid "That's too long. Max notice size is %d chars." msgstr "" "Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." -#: actions/apistatusesupdate.php:202 -msgid "Not found" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." msgstr "Non atopado" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 @@ -725,10 +724,6 @@ msgstr "Chíos tagueados con %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non atopado" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -760,9 +755,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Podes actualizar a túa información do perfil persoal aquí" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "Usuario sen un perfil que coincida." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -928,8 +924,8 @@ msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación non é para ti!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Tipo de enderezo %s non recoñecido" #: actions/confirmaddress.php:94 @@ -1098,7 +1094,7 @@ msgstr "Tamaño inválido." #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" #: actions/designadminpanel.php:375 @@ -1325,6 +1321,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta inválida: '%s'" + #: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." @@ -1642,8 +1643,9 @@ msgstr "Non se pode convertir o token da petición a tokens de acceso." msgid "Remote service uses unknown version of OMB protocol." msgstr "Versión de protocolo OMB descoñecida." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Acounteceu un erro actualizando o perfil remoto" #: actions/getfile.php:79 @@ -1774,11 +1776,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Usuario sen un perfil que coincida." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2026,8 +2023,8 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" #: actions/invite.php:72 @@ -2262,7 +2259,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "O usuario bloqueoute." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Sen estado actual" #: actions/newapplication.php:52 @@ -2432,11 +2430,11 @@ msgid "You are not a user of that application." msgstr "Non estás suscrito a ese perfil" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2445,7 +2443,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "O chío non ten perfil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2456,13 +2455,13 @@ msgstr "Estado de %1$s en %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "Conectar" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2625,23 +2624,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2793,8 +2792,8 @@ msgid "People search" msgstr "Procurar xente." #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "%s non é unha etiqueta de xente válida" #: actions/peopletag.php:142 @@ -2803,7 +2802,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Contido do chío inválido" #: actions/postnotice.php:101 @@ -2954,7 +2954,7 @@ msgstr "Configuracións gardadas." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3878,7 +3878,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3973,7 +3973,7 @@ msgid "Unable to save site notice." msgstr "Non se puideron gardar os teus axustes de Twitter!" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4352,7 +4352,8 @@ msgid "User is not silenced." msgstr "O usuario non ten perfil." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Non hai identificador de perfil na peticion." #: actions/unsubscribe.php:98 @@ -6389,6 +6390,10 @@ msgstr "Acounteceu un erro ó inserir o novo perfil" msgid "Error inserting avatar" msgstr "Acounteceu un erro ó inserir o avatar" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Acounteceu un erro actualizando o perfil remoto" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Aconteceu un erro ó inserir o perfil remoto" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index e5a3cd6dd9..9cc04c93c1 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:24+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:32+0000\n" "Language-Team: Galician\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -80,7 +80,8 @@ msgstr "Gardar" #. 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" +#, fuzzy +msgid "No such page." msgstr "Non existe tal páxina" #: actions/all.php:75 actions/allrss.php:68 @@ -228,9 +229,10 @@ msgid "This method requires a POST." msgstr "Este método require un POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Ten que especificar un parámetro chamado \"device\" cun destes valores: sms, " "im, none" @@ -434,10 +436,9 @@ msgstr "A localidade é longa de máis (o máximo son 255 caracteres)." msgid "Too many aliases! Maximum %d." msgstr "Demasiados pseudónimos! O número máximo é %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Pseudónimo inválido: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -454,7 +455,8 @@ msgstr "O pseudónimo non pode coincidir co alcume." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Non se atopou o grupo!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -647,9 +649,9 @@ msgstr "Non se atopou ningún estado con esa ID." msgid "That's too long. Max notice size is %d chars." msgstr "Iso é longo de máis. A nota non pode exceder os %d caracteres." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Non se atopou" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non se atopou." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -712,10 +714,6 @@ msgstr "Notas etiquetadas con %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións etiquetadas con %1$s en %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non se atopou." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Non existe tal dato adxunto." @@ -748,10 +746,10 @@ msgstr "" "%s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "O usuario non ten un perfil correspondente" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "O usuario non ten perfil." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -906,8 +904,8 @@ msgid "That confirmation code is not for you!" msgstr "Ese código de confirmación non é para vostede!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Non se recoñeceu o tipo de enderezo %s" #: actions/confirmaddress.php:94 @@ -1063,8 +1061,8 @@ msgid "Invalid logo URL." msgstr "URL do logo incorrecto." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "O tema visual non está dispoñible: %s" #: actions/designadminpanel.php:375 @@ -1270,6 +1268,11 @@ msgstr "Utilice este formulario para editar o grupo." msgid "description is too long (max %d chars)." msgstr "a descrición é longa de máis (o límite é de %d caracteres)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Pseudónimo inválido: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Non se puido actualizar o grupo." @@ -1582,8 +1585,9 @@ msgstr "Non se puido converter a ficha da solicitude nun pase." msgid "Remote service uses unknown version of OMB protocol." msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Houbo un erro ao actualizar o perfil remoto" #: actions/getfile.php:79 @@ -1707,10 +1711,6 @@ msgstr "" "Pode cargar un logo para o seu grupo. O tamaño máximo para o ficheiro é de %" "s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "O usuario non ten perfil." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Escolla unha zona cadrada da imaxe para usala como logo." @@ -1960,8 +1960,8 @@ msgid "Invites have been disabled." msgstr "As invitacións están desactivadas." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Ten que identificarse para invitar a outros a usar %s" #: actions/invite.php:72 @@ -2196,7 +2196,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Non se pode converter a %1$s en administrador do grupo %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Sen estado actual" #: actions/newapplication.php:52 @@ -2361,11 +2362,11 @@ msgid "You are not a user of that application." msgstr "Non é usuario desa aplicación." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Non se puido revogar o acceso da aplicación: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Non autorizou o acceso á súa conta para ningunha aplicación." @@ -2376,7 +2377,8 @@ msgstr "" "aplicacións " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Non hai perfil para a nota" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2387,13 +2389,13 @@ msgstr "Estado de %1$s en %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "tipo de contido " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2549,23 +2551,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Configuración do servidor e das rutas para este sitio StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Non se pode ler o directorio de temas visuais: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Non se pode escribir no directorio de avatares: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Non se pode escribir no directorio de fondos: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Non se pode ler o directorio de traducións: %s" #: actions/pathsadminpanel.php:183 @@ -2706,8 +2708,8 @@ msgid "People search" msgstr "Busca de xente" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "A etiqueta de persoa non é correcta: %s" #: actions/peopletag.php:142 @@ -2716,7 +2718,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "O contido da nota é incorrecto" #: actions/postnotice.php:101 @@ -2865,8 +2868,8 @@ msgid "Settings saved." msgstr "Gardouse a configuración." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Alén do límite da páxina (%s)" #: actions/public.php:92 @@ -3711,7 +3714,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3799,7 +3802,7 @@ msgid "Unable to save site notice." msgstr "" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4149,8 +4152,9 @@ msgid "User is not silenced." msgstr "" #: actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" +#, fuzzy +msgid "No profile ID in request." +msgstr "Non se solicitou ningún pase." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -5946,6 +5950,10 @@ msgstr "" msgid "Error inserting avatar" msgstr "" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Houbo un erro ao actualizar o perfil remoto" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index ed50d6c6e3..38d1638b8c 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:27+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:35+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -86,7 +86,7 @@ msgstr "שמור" #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy -msgid "No such page" +msgid "No such page." msgstr "אין הודעה כזו." #: actions/all.php:75 actions/allrss.php:68 @@ -230,7 +230,7 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -435,10 +435,9 @@ msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "כתובת אתר הבית '%s' אינה חוקית" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -456,7 +455,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "לא נמצא" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -652,8 +651,9 @@ msgstr "" msgid "That's too long. Max notice size is %d chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." -#: actions/apistatusesupdate.php:202 -msgid "Not found" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." msgstr "לא נמצא" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 @@ -716,11 +716,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" -#: actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "לא נמצא" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -752,10 +747,11 @@ 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:106 -msgid "User without matching profile" -msgstr "" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." +msgstr "למשתמש אין פרופיל." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -918,8 +914,8 @@ msgid "That confirmation code is not for you!" msgstr "קוד האישור הזה אינו מיועד לך!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "סוג לא מזוהה של כתובת %s" #: actions/confirmaddress.php:94 @@ -1083,7 +1079,7 @@ msgstr "גודל לא חוקי." #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/designadminpanel.php:375 @@ -1304,6 +1300,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "כתובת אתר הבית '%s' אינה חוקית" + #: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." @@ -1614,8 +1615,9 @@ msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליח msgid "Remote service uses unknown version of OMB protocol." msgstr "גירסה לא מוכרת של פרוטוקול OMB" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "שגיאה בעדכון פרופיל מרוחק" #: actions/getfile.php:79 @@ -1746,11 +1748,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "למשתמש אין פרופיל." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -1997,9 +1994,9 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "עידכון המשתמש נכשל." #: actions/invite.php:72 #, php-format @@ -2200,8 +2197,9 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "למשתמש אין פרופיל." #: actions/microsummary.php:69 -msgid "No current status" -msgstr "" +#, fuzzy +msgid "No current status." +msgstr "אין תוצאות" #: actions/newapplication.php:52 #, fuzzy @@ -2364,11 +2362,11 @@ msgid "You are not a user of that application." msgstr "לא שלחנו אלינו את הפרופיל הזה" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2377,7 +2375,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "להודעה אין פרופיל" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2388,13 +2387,13 @@ msgstr "הסטטוס של %1$s ב-%2$s " #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "התחבר" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2557,23 +2556,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2725,7 +2724,7 @@ msgstr "חיפוש סיסמה" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "לא עומד בכללים ל-OpenID." #: actions/peopletag.php:142 @@ -2734,7 +2733,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "מיקרובלוג מאת %s" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "תוכן ההודעה לא חוקי" #: actions/postnotice.php:101 @@ -2879,7 +2879,7 @@ msgstr "ההגדרות נשמרו." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3744,7 +3744,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3837,7 +3837,7 @@ msgid "Unable to save site notice." msgstr "בעיה בשמירת ההודעה." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4208,7 +4208,7 @@ msgstr "למשתמש אין פרופיל." #: actions/unsubscribe.php:77 #, fuzzy -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "השרת לא החזיר כתובת פרופיל" #: actions/unsubscribe.php:98 @@ -6123,6 +6123,10 @@ msgstr "שגיאה בהכנסת הפרופיל" msgid "Error inserting avatar" msgstr "שגיאה בהכנסת התמונה." +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "שגיאה בעדכון פרופיל מרוחק" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "שגיאה בהכנסת פרופיל מרוחק" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 882e9ac36b..8734df5b68 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:30+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:37+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -81,7 +81,8 @@ msgstr "Składować" #. 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" +#, fuzzy +msgid "No such page." msgstr "Strona njeeksistuje" #: actions/all.php:75 actions/allrss.php:68 @@ -223,7 +224,7 @@ msgstr "Tuta metoda wužaduje sej POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -419,10 +420,9 @@ msgstr "Městno je předołho (maks. 255 znamješkow)." msgid "Too many aliases! Maximum %d." msgstr "Přewjele aliasow! Maksimum: %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Njepłaćiwy alias: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -439,7 +439,8 @@ msgstr "Alias njemóže samsny kaž přimjeno być." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Skupina njenamakana!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -625,9 +626,9 @@ msgstr "Žadyn status z tym ID namakany." msgid "That's too long. Max notice size is %d chars." msgstr "To je předołho. Maksimalna wulkosć zdźělenki je %d znamješkow." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Njenamakany" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Njenamakany." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -688,10 +689,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Njenamakany." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Přiwěšk njeeksistuje." @@ -723,10 +720,10 @@ msgstr "" "Móžeš swój wosobinski awatar nahrać. Maksimalna datajowa wulkosć je %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Wužiwar bjez hodźaceho so profila" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Wužiwar bjez hodźaceho so profila." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -878,8 +875,8 @@ msgid "That confirmation code is not for you!" msgstr "Tutón wobkrućenski kod njeje za tebje!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Njespóznany adresowy typ %s" #: actions/confirmaddress.php:94 @@ -1028,8 +1025,8 @@ msgid "Invalid logo URL." msgstr "Njepłaćiwy logowy URL." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Šat njesteji k dispoziciji: %s" #: actions/designadminpanel.php:375 @@ -1234,6 +1231,11 @@ msgstr "Wuž tutón formular, zo by skupinu wobdźěłał." msgid "description is too long (max %d chars)." msgstr "wopisanje je předołho (maks. %d znamješkow)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Njepłaćiwy alias: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Skupina njeje so dała aktualizować." @@ -1530,9 +1532,10 @@ msgstr "" 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/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Zmylk při zasunjenju zdaleneho profila" #: actions/getfile.php:79 msgid "No such file." @@ -1650,10 +1653,6 @@ msgstr "" "Móžeš logowy wobraz za swoju skupinu nahrać. Maksimalna datajowa wulkosć je %" "s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Wužiwar bjez hodźaceho so profila." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -1880,9 +1879,9 @@ msgid "Invites have been disabled." msgstr "Přeprošenja buchu znjemóžnjene." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał." #: actions/invite.php:72 #, php-format @@ -2079,7 +2078,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Njeje móžno %1$S k administratorej w skupinje %2$s činić." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Žadyn aktualny status" #: actions/newapplication.php:52 @@ -2236,11 +2236,11 @@ msgid "You are not a user of that application." msgstr "Njejsy wužiwar tuteje aplikacije." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2249,7 +2249,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Zdźělenka nima profil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2260,13 +2261,13 @@ msgstr "" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2419,23 +2420,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Šćežka a serwerowe nastajenja za tute sydło StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Šat njesteji k dispoziciji: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Awatarowy zapis" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Pozadkowy zapis" #: actions/pathsadminpanel.php:177 #, php-format -msgid "Locales directory not readable: %s" +msgid "Locales directory not readable: %s." msgstr "" #: actions/pathsadminpanel.php:183 @@ -2574,9 +2575,9 @@ msgid "People search" msgstr "Za ludźimi pytać" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." +msgstr "Njepłaćiwa e-mejlowa adresa." #: actions/peopletag.php:142 #, php-format @@ -2584,7 +2585,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Njepłaćiwy wobsah zdźělenki" #: actions/postnotice.php:101 @@ -2725,7 +2727,7 @@ msgstr "Nastajenja składowane." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3559,7 +3561,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3647,7 +3649,7 @@ msgid "Unable to save site notice." msgstr "Njeje móžno, sydłowu zdźělenku składować." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -3997,8 +3999,9 @@ msgid "User is not silenced." msgstr "" #: actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" +#, fuzzy +msgid "No profile ID in request." +msgstr "Žadyn profil z tym ID." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -5800,6 +5803,10 @@ msgstr "Zmylk při zasunjenju noweho profila" msgid "Error inserting avatar" msgstr "Zmylk při zasunjenju awatara" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Zmylk při zasunjenju zdaleneho profila" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 79a0f893e8..757ec5c772 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:33+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:40+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -79,7 +79,8 @@ msgstr "Salveguardar" #. 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" +#, fuzzy +msgid "No such page." msgstr "Pagina non existe" #: actions/all.php:75 actions/allrss.php:68 @@ -227,9 +228,10 @@ msgid "This method requires a POST." msgstr "Iste methodo require un POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Tu debe specificar un parametro nominate 'device' con un del valores: sms, " "im, none" @@ -429,10 +431,9 @@ msgstr "Loco es troppo longe (max. 255 characteres)." msgid "Too many aliases! Maximum %d." msgstr "Troppo de aliases! Maximo: %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Alias invalide: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -449,7 +450,8 @@ msgstr "Le alias non pote esser identic al pseudonymo." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Gruppo non trovate!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -644,9 +646,9 @@ msgid "That's too long. Max notice size is %d chars." msgstr "" "Isto es troppo longe. Le longitude maximal del notas es %d characteres." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Non trovate" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non trovate." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -710,10 +712,6 @@ msgstr "Notas con etiquetta %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualisationes con etiquetta %1$s in %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non trovate." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Annexo non existe." @@ -745,9 +743,9 @@ msgstr "" "Tu pote incargar tu avatar personal. Le dimension maximal del file es %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." msgstr "Usator sin profilo correspondente" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -903,8 +901,8 @@ msgid "That confirmation code is not for you!" msgstr "Iste codice de confirmation non es pro te!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Typo de adresse %s non recognoscite" #: actions/confirmaddress.php:94 @@ -1060,8 +1058,8 @@ msgid "Invalid logo URL." msgstr "URL de logotypo invalide." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Thema non disponibile: %s" #: actions/designadminpanel.php:375 @@ -1267,6 +1265,11 @@ msgstr "Usa iste formulario pro modificar le gruppo." msgid "description is too long (max %d chars)." msgstr "description es troppo longe (max %d chars)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Alias invalide: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Non poteva actualisar gruppo." @@ -1574,8 +1577,9 @@ msgstr "Non poteva converter le indicio de requesta in un indicio de accesso." msgid "Remote service uses unknown version of OMB protocol." msgstr "Le servicio remote usa un version incognite del protocollo OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Error in actualisar le profilo remote" #: actions/getfile.php:79 @@ -1699,10 +1703,6 @@ msgstr "" "Tu pote incargar un imagine pro le logotypo de tu gruppo. Le dimension " "maximal del file es %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Usator sin profilo correspondente" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selige un area quadrate del imagine que devenira le logotypo." @@ -1953,8 +1953,8 @@ msgid "Invites have been disabled." msgstr "Le invitationes ha essite disactivate." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Tu debe aperir un session pro invitar altere usatores a usar %s" #: actions/invite.php:72 @@ -2188,7 +2188,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Non pote facer %1$s administrator del gruppo %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Nulle stato actual" #: actions/newapplication.php:52 @@ -2356,11 +2357,11 @@ msgid "You are not a user of that application." msgstr "Tu non es usator de iste application." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Impossibile revocar le accesso del application: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Tu non ha autorisate alcun application a usar tu conto." @@ -2371,7 +2372,8 @@ msgstr "" "applicationes " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Le nota ha nulle profilo" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2382,13 +2384,13 @@ msgstr "Le stato de %1$s in %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "typo de contento " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2542,23 +2544,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Configuration de cammino e servitor pro iste sito StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Directorio de thema non legibile: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Directorio de avatar non scriptibile: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Directorio de fundo non scriptibile: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Directorio de localitates non scriptibile: %s" #: actions/pathsadminpanel.php:183 @@ -2699,8 +2701,8 @@ msgid "People search" msgstr "Recerca de personas" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Etiquetta de personas invalide: %s" #: actions/peopletag.php:142 @@ -2709,7 +2711,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usatores auto-etiquettate con %1$s - pagina %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Le contento del nota es invalide" #: actions/postnotice.php:101 @@ -2856,8 +2859,8 @@ msgid "Settings saved." msgstr "Preferentias confirmate." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Ultra le limite de pagina (%s)" #: actions/public.php:92 @@ -3772,7 +3775,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Le limite minimal del texto es 0 (illimitate)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "Le limite de duplicatos debe esser 1 o plus secundas." #: actions/siteadminpanel.php:221 @@ -3864,7 +3868,8 @@ msgid "Unable to save site notice." msgstr "Impossibile salveguardar le aviso del sito." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "Le longitude maxime del aviso a tote le sito es 255 characteres" #: actions/sitenoticeadminpanel.php:176 @@ -4237,7 +4242,8 @@ msgid "User is not silenced." msgstr "Le usator non es silentiate." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Nulle ID de profilo in requesta." #: actions/unsubscribe.php:98 @@ -6209,6 +6215,10 @@ msgstr "Error durante le insertion del nove profilo" msgid "Error inserting avatar" msgstr "Error durante le insertion del avatar" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Error in actualisar le profilo remote" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error durante le insertion del profilo remote" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index a99f7d058e..e28045d178 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:36+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:44+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -89,7 +89,7 @@ msgstr "Vista" #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy -msgid "No such page" +msgid "No such page." msgstr "Ekkert þannig merki." #: actions/all.php:75 actions/allrss.php:68 @@ -232,7 +232,7 @@ msgstr "Þessi aðferð krefst POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -437,11 +437,10 @@ msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" -msgstr "" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Ógilt merki: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -458,7 +457,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "Aðferð í forritsskilum fannst ekki!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -653,9 +652,9 @@ msgstr "Engin staða með þessu kenni fannst." msgid "That's too long. Max notice size is %d chars." msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Fannst ekki" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Fannst ekki." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -717,10 +716,6 @@ msgstr "Babl merkt með %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Fannst ekki." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "" @@ -751,9 +746,10 @@ 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:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "Notandi með enga persónulega síðu sem passar við" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -910,8 +906,8 @@ msgid "That confirmation code is not for you!" msgstr "Þessi staðfestingarlykill er ekki fyrir þig!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Óþekkt gerð tölvupóstfangs %s" #: actions/confirmaddress.php:94 @@ -1074,7 +1070,7 @@ msgstr "Ótæk stærð." #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Þessi síða er ekki aðgengileg í " #: actions/designadminpanel.php:375 @@ -1295,6 +1291,11 @@ msgstr "Notaðu þetta eyðublað til að breyta hópnum." msgid "description is too long (max %d chars)." msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Gat ekki uppfært hóp." @@ -1605,8 +1606,9 @@ msgstr "Gat ekki breytt beiðnistókum í aðgangstóka." msgid "Remote service uses unknown version of OMB protocol." msgstr "Óþekkt útgáfa OMB samskiptamátans." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu" #: actions/getfile.php:79 @@ -1729,11 +1731,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Notandi með enga persónulega síðu sem passar við" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -1976,8 +1973,8 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Þú verður að vera innskráð(ur) til að geta boðið öðrum að nota %s" #: actions/invite.php:72 @@ -2214,7 +2211,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Engin núverandi staða" #: actions/newapplication.php:52 @@ -2384,11 +2382,11 @@ msgid "You are not a user of that application." msgstr "Þú ert ekki meðlimur í þessum hópi." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2397,7 +2395,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Babl hefur enga persónulega síðu" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2408,13 +2407,13 @@ msgstr "Staða %1$s á %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2576,23 +2575,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Þessi síða er ekki aðgengileg í " #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Þessi síða er ekki aðgengileg í " #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Þessi síða er ekki aðgengileg í " #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Þessi síða er ekki aðgengileg í " #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2743,8 +2742,8 @@ msgid "People search" msgstr "Leit að fólki" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Ekki gilt persónumerki: %s" #: actions/peopletag.php:142 @@ -2753,7 +2752,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Notendur sjálfmerktir með %s - síða %d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Ótækt bablinnihald" #: actions/postnotice.php:101 @@ -2904,7 +2904,7 @@ msgstr "Stillingar vistaðar." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3786,7 +3786,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3881,7 +3881,7 @@ msgid "Unable to save site notice." msgstr "Vandamál komu upp við að vista babl." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4255,7 +4255,8 @@ msgid "User is not silenced." msgstr "Notandi hefur enga persónulega síðu." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Ekkert einkenni persónulegrar síðu í beiðni." #: actions/unsubscribe.php:98 @@ -6166,6 +6167,10 @@ msgstr "Villa kom upp við að setja inn nýja persónulega síðu" msgid "Error inserting avatar" msgstr "Villa kom upp við að setja inn mynd" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Villa kom upp við að setja inn persónulega fjarsíðu" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 2e850a167e..caacd2daf8 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:39+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:47+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -82,7 +82,8 @@ msgstr "Salva" #. 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" +#, fuzzy +msgid "No such page." msgstr "Pagina inesistente." #: actions/all.php:75 actions/allrss.php:68 @@ -231,9 +232,10 @@ msgid "This method requires a POST." msgstr "Questo metodo richiede POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "È necessario specificare un parametro chiamato \"device\" con un valore tra: " "\"sms\", \"im\" o \"none\"" @@ -435,10 +437,9 @@ msgstr "Ubicazione troppo lunga (max 255 caratteri)." msgid "Too many aliases! Maximum %d." msgstr "Troppi alias! Massimo %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Alias non valido: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -455,7 +456,8 @@ msgstr "L'alias non può essere lo stesso del soprannome." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Gruppo non trovato!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -647,9 +649,9 @@ msgstr "Nessuno stato trovato con quel ID." msgid "That's too long. Max notice size is %d chars." msgstr "Troppo lungo. Lunghezza massima %d caratteri." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Non trovato" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non trovato." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -711,10 +713,6 @@ msgstr "Messaggi etichettati con %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Messaggi etichettati con %1$s su %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Non trovato." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Nessun allegato." @@ -746,10 +744,10 @@ msgstr "" "Puoi caricare la tua immagine personale. La dimensione massima del file è %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Utente senza profilo corrispondente" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Utente senza profilo corrispondente." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -904,8 +902,8 @@ msgid "That confirmation code is not for you!" msgstr "Quel codice di conferma non è per te!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Tipo di indirizzo %s non riconosciuto" #: actions/confirmaddress.php:94 @@ -1060,8 +1058,8 @@ msgid "Invalid logo URL." msgstr "URL del logo non valido." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Tema non disponibile: %s" #: actions/designadminpanel.php:375 @@ -1267,6 +1265,11 @@ msgstr "Usa questo modulo per modificare il gruppo." msgid "description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max %d caratteri)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Alias non valido: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." @@ -1578,8 +1581,9 @@ msgstr "Impossibile convertire il token di richiesta in uno di accesso." msgid "Remote service uses unknown version of OMB protocol." msgstr "Il servizio remoto usa una versione del protocollo OMB sconosciuta." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Errore nell'aggiornare il profilo remoto" #: actions/getfile.php:79 @@ -1703,10 +1707,6 @@ msgstr "" "Puoi caricare un'immagine per il logo del tuo gruppo. La dimensione massima " "del file è di %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Utente senza profilo corrispondente." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Scegli un'area quadrata dell'immagine per il logo." @@ -1957,8 +1957,8 @@ msgid "Invites have been disabled." msgstr "Gli inviti sono stati disabilitati." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s" #: actions/invite.php:72 @@ -2189,7 +2189,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Impossibile rendere %1$s un amministratore del gruppo %2$s" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Nessun messaggio corrente" #: actions/newapplication.php:52 @@ -2354,11 +2355,11 @@ msgid "You are not a user of that application." msgstr "Non sei un utente di quella applicazione." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Impossibile revocare l'accesso per l'applicazione: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Non hai autorizzato alcuna applicazione all'uso del tuo account." @@ -2369,7 +2370,8 @@ msgstr "" "loro applicazioni " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Il messaggio non ha un profilo" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2380,13 +2382,13 @@ msgstr "Stato di %1$s su %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "tipo di contenuto " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2541,23 +2543,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Percorso e impostazioni server per questo sito StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Directory del tema non leggibile: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Directory delle immagini degli utenti non scrivibile: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Directory degli sfondi non scrivibile: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Directory delle localizzazioni non leggibile: %s" #: actions/pathsadminpanel.php:183 @@ -2698,8 +2700,8 @@ msgid "People search" msgstr "Cerca persone" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Non è un'etichetta valida di persona: %s" #: actions/peopletag.php:142 @@ -2708,7 +2710,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utenti auto-etichettati con %1$s - pagina %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Contenuto del messaggio non valido" #: actions/postnotice.php:101 @@ -2856,8 +2859,8 @@ msgid "Settings saved." msgstr "Impostazioni salvate." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Oltre il limite della pagina (%s)" #: actions/public.php:92 @@ -3770,7 +3773,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Il limite minimo del testo è di 0 caratteri (illimitato)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "Il limite per i duplicati deve essere di 1 o più secondi." #: actions/siteadminpanel.php:221 @@ -3862,7 +3866,8 @@ msgid "Unable to save site notice." msgstr "Impossibile salvare il messaggio del sito." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "La dimensione massima del messaggio del sito è di 255 caratteri" #: actions/sitenoticeadminpanel.php:176 @@ -4235,7 +4240,8 @@ msgid "User is not silenced." msgstr "L'utente non è zittito." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Nessun ID di profilo nella richiesta." #: actions/unsubscribe.php:98 @@ -6211,6 +6217,10 @@ msgstr "Errore nell'inserire il nuovo profilo" msgid "Error inserting avatar" msgstr "Errore nell'inserire l'immagine" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Errore nell'aggiornare il profilo remoto" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Errore nell'inserire il profilo remoto" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index e51c465f50..40ade26e7a 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:42+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:52+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -84,7 +84,8 @@ msgstr "保存" #. 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" +#, fuzzy +msgid "No such page." msgstr "そのようなページはありません。" #: actions/all.php:75 actions/allrss.php:68 @@ -230,9 +231,10 @@ msgid "This method requires a POST." msgstr "このメソッドには POST が必要です。" #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "「device」という名前の引数を、次の中から値を選んで、指定する必要があります: " "sms, im, none" @@ -435,10 +437,9 @@ msgstr "場所が長すぎます。(255字まで)" msgid "Too many aliases! Maximum %d." msgstr "別名が多すぎます! 最大 %d。" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "不正な別名: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -455,7 +456,8 @@ msgstr "別名はニックネームと同じではいけません。" #: 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!" +#, fuzzy +msgid "Group not found." msgstr "グループが見つかりません!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -643,9 +645,9 @@ msgstr "そのIDでのステータスはありません。" msgid "That's too long. Max notice size is %d chars." msgstr "長すぎます。つぶやきは最大 140 字までです。" -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "みつかりません" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "見つかりません。" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -706,10 +708,6 @@ msgstr "%s とタグ付けされたつぶやき" msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s に %1$s による更新があります!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "見つかりません。" - #: actions/attachment.php:73 msgid "No such attachment." msgstr "そのような添付はありません。" @@ -740,9 +738,9 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "自分のアバターをアップロードできます。最大サイズは%sです。" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." msgstr "合っているプロフィールのないユーザ" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -900,8 +898,8 @@ msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "不明なアドレスタイプ %s" #: actions/confirmaddress.php:94 @@ -1057,8 +1055,8 @@ msgid "Invalid logo URL." msgstr "不正なロゴ URL" #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "テーマが利用できません: %s" #: actions/designadminpanel.php:375 @@ -1264,6 +1262,11 @@ msgstr "このフォームを使ってグループを編集します。" msgid "description is too long (max %d chars)." msgstr "記述が長すぎます。(最長 %d 字)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "不正な別名: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "グループを更新できません。" @@ -1575,8 +1578,9 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" "リモートサービスは、不明なバージョンの OMB プロトコルを使用しています。" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "リモートプロファイル更新エラー" #: actions/getfile.php:79 @@ -1702,10 +1706,6 @@ msgstr "" "あなたのグループ用にロゴイメージをアップロードできます。最大ファイルサイズは " "%s。" -#: 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 "ロゴとなるイメージの正方形を選択。" @@ -1954,8 +1954,8 @@ msgid "Invites have been disabled." msgstr "招待は無効にされました。" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "他のユーザが%sを使用するよう誘うためにはログインしなければなりません。" #: actions/invite.php:72 @@ -2188,7 +2188,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "%1$s をグループ %2$s の管理者にすることはできません" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "現在のステータスはありません" #: actions/newapplication.php:52 @@ -2353,11 +2354,11 @@ msgid "You are not a user of that application." msgstr "あなたはそのアプリケーションのユーザではありません。" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "アプリケーションのための取消しアクセスができません: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" "あなたは、どんなアプリケーションもあなたのアカウントを使用するのを認可してい" @@ -2368,7 +2369,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "開発者は彼らのアプリケーションのために登録設定を編集できます " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "つぶやきにはプロファイルはありません。" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2379,13 +2381,13 @@ msgstr "%2$s における %1$ のステータス" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "内容種別 " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2540,23 +2542,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "パスと StatusNet サイトのサーバー設定" #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "テーマディレクトリが読み込めません: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "アバターディレクトリに書き込みできません: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "バックグラウンドディレクトリに書き込みできません : %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "場所ディレクトリが読み込めません: %s" #: actions/pathsadminpanel.php:183 @@ -2697,8 +2699,8 @@ msgid "People search" msgstr "ピープルサーチ" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "正しいタグではありません: %s" #: actions/peopletag.php:142 @@ -2707,7 +2709,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "ユーザ自身がつけたタグ %1$s - ページ %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "不正なつぶやき内容" #: actions/postnotice.php:101 @@ -2852,8 +2855,8 @@ msgid "Settings saved." msgstr "設定が保存されました。" #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "ページ制限を超えました (%s)" #: actions/public.php:92 @@ -3771,7 +3774,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "最小のテキスト制限は140字です。" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "デュープ制限は1秒以上でなければなりません。" #: actions/siteadminpanel.php:221 @@ -3868,7 +3872,7 @@ msgid "Unable to save site notice." msgstr "あなたのデザイン設定を保存できません。" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4245,7 +4249,8 @@ msgid "User is not silenced." msgstr "ユーザはサイレンスではありません。" #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "リクエスト内にプロファイルIDがありません。" #: actions/unsubscribe.php:98 @@ -6193,6 +6198,10 @@ msgstr "プロファイル追加エラー" msgid "Error inserting avatar" msgstr "アバター追加エラー" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "リモートプロファイル更新エラー" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "リモートプロファイル追加エラー" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index d16e80aa27..2a02ec302f 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:45+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:55+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -79,7 +79,8 @@ msgstr "저장" #. 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" +#, fuzzy +msgid "No such page." msgstr "해당하는 페이지 없음" #: actions/all.php:75 actions/allrss.php:68 @@ -223,7 +224,7 @@ msgstr "이 메서드는 POST를 요구합니다." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -423,10 +424,9 @@ msgstr "위치가 너무 깁니다. (최대 255글자)" msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "사용할 수 없는 별명 : \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -443,7 +443,8 @@ msgstr "" #: 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!" +#, fuzzy +msgid "Group not found." msgstr "그룹을 찾을 수 없습니다." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -634,9 +635,9 @@ msgstr "발견된 ID의 상태가 없습니다." msgid "That's too long. Max notice size is %d chars." msgstr "너무 깁니다. 통지의 최대 길이는 %d 글자 입니다." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "찾지 못함" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "찾을 수가 없습니다." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -697,10 +698,6 @@ msgstr "%s 태그된 통지" msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "찾을 수가 없습니다." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "해당하는 첨부파일이 없습니다." @@ -731,9 +728,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "당신의 개인 아바타를 업로드할 수 있습니다. 최대 파일 크기는 %s 입니다." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "프로필 매칭이 없는 사용자" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -890,8 +888,8 @@ msgid "That confirmation code is not for you!" msgstr "그 인증 코드는 귀하의 것이 아닙니다!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "인식되지않은 주소유형 %s" #: actions/confirmaddress.php:94 @@ -1053,8 +1051,8 @@ msgid "Invalid logo URL." msgstr "잘못된 로고 URL 입니다." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "테마를 이용할 수 없습니다: %s" #: actions/designadminpanel.php:375 @@ -1270,6 +1268,11 @@ msgstr "다음 양식을 이용해 그룹을 편집하십시오." msgid "description is too long (max %d chars)." msgstr "설명이 너무 길어요. (최대 %d글자)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "사용할 수 없는 별명 : \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." @@ -1580,8 +1583,9 @@ msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니 msgid "Remote service uses unknown version of OMB protocol." msgstr "OMB 프로토콜의 알려지지 않은 버전" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "리모트 프로필 업데이트 오류" #: actions/getfile.php:79 @@ -1711,11 +1715,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "프로필 매칭이 없는 사용자" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "이미지에서 로고로 사용할 사각 영역을 지정하세요." @@ -1959,8 +1958,8 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "로그인을 해야 다른 사용자를 %s에 초대할 수 있습니다." #: actions/invite.php:72 @@ -2186,7 +2185,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "관리자만 그룹을 편집할 수 있습니다." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "현재 상태가 없습니다." #: actions/newapplication.php:52 @@ -2354,11 +2354,11 @@ msgid "You are not a user of that application." msgstr "당신은 해당 그룹의 멤버가 아닙니다." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2367,7 +2367,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "통지에 프로필이 없습니다." #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2378,13 +2379,13 @@ msgstr "%1$s의 상태 (%2$s에서)" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "연결" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2545,23 +2546,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "아바타 디렉토리에 쓸 수 없습니다 : %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "아바타 디렉토리에 쓸 수 없습니다 : %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2713,8 +2714,8 @@ msgid "People search" msgstr "사람 찾기" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "유효한 태그가 아닙니다: %s" #: actions/peopletag.php:142 @@ -2723,7 +2724,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "이용자 셀프 테크 %s - %d 페이지" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "옳지 않은 통지 내용" #: actions/postnotice.php:101 @@ -2868,7 +2870,7 @@ msgstr "설정 저장" #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3759,7 +3761,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3854,7 +3856,7 @@ msgid "Unable to save site notice." msgstr "트위터 환경설정을 저장할 수 없습니다." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4226,7 +4228,8 @@ msgid "User is not silenced." msgstr "이용자가 프로필을 가지고 있지 않습니다." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "요청한 프로필id가 없습니다." #: actions/unsubscribe.php:98 @@ -6136,6 +6139,10 @@ msgstr "새 프로필 추가 오류" msgid "Error inserting avatar" msgstr "아바타 추가 오류" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "리모트 프로필 업데이트 오류" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "리모트 프로필 추가 오류" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index d7094dc021..aa7155fac7 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:49+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:00:59+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -82,7 +82,8 @@ msgstr "Зачувај" #. 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" +#, fuzzy +msgid "No such page." msgstr "Нема таква страница" #: actions/all.php:75 actions/allrss.php:68 @@ -231,9 +232,10 @@ msgid "This method requires a POST." msgstr "Овој метод бара POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Мора да назначите параметар со име 'device' со една од следниве вредности: " "sms, im, none" @@ -436,10 +438,9 @@ msgstr "Локацијата е предолга (максимумот е 255 з msgid "Too many aliases! Maximum %d." msgstr "Премногу алијаси! Дозволено е највеќе %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Неважечки алијас: „%s“" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -456,7 +457,8 @@ msgstr "Алијасот не може да биде ист како прека #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Групата не е пронајдена!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -647,9 +649,9 @@ msgstr "Нема пронајдено статус со тој ID." msgid "That's too long. Max notice size is %d chars." msgstr "Ова е предолго. Максималната дозволена должина изнесува %d знаци." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Не е пронајдено" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Не е пронајдено." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -712,10 +714,6 @@ msgstr "Забелешки означени со %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Подновувањата се означени со %1$s на %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не е пронајдено." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Нема таков прилог." @@ -748,10 +746,10 @@ msgstr "" "податотеката изнесува %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Корисник без соодветен профил" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Корисник без соодветен профил." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -907,8 +905,8 @@ msgid "That confirmation code is not for you!" msgstr "Овој код за потврда не е за Вас!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Непознат тип на адреса %s" #: actions/confirmaddress.php:94 @@ -1064,8 +1062,8 @@ msgid "Invalid logo URL." msgstr "Погрешен URL на лого." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Непосточка тема: %s" #: actions/designadminpanel.php:375 @@ -1271,6 +1269,11 @@ msgstr "ОБразецов служи за уредување на групат msgid "description is too long (max %d chars)." msgstr "описот е предолг (максимум %d знаци)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неважечки алијас: „%s“" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Не можев да ја подновам групата." @@ -1581,8 +1584,9 @@ msgstr "Не можев да ги претворам жетоните за ба msgid "Remote service uses unknown version of OMB protocol." msgstr "Далечинската служба користи непозната верзија на OMB протокол." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Грешка во подновувањето на далечинскиот профил" #: actions/getfile.php:79 @@ -1708,10 +1712,6 @@ msgstr "" "Можете да подигнете слика за логото на Вашата група. Максималната дозволена " "големина на податотеката е %s." -#: 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 "Одберете квадратен простор на сликата за лого." @@ -1962,8 +1962,8 @@ msgid "Invites have been disabled." msgstr "Поканите се оневозможени." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "Мора да сте најавени за да можете да каните други корисници да користат %s" @@ -2197,7 +2197,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Не можам да го направам корисникот %1$s администратор на групата %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Нема тековен статус" #: actions/newapplication.php:52 @@ -2365,11 +2366,11 @@ msgid "You are not a user of that application." msgstr "Не сте корисник на тој програм." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Не можам да му го одземам пристапот на програмот: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Му немате дозволено пристап до Вашата сметка на ниеден програм." @@ -2379,7 +2380,8 @@ msgstr "" "Развивачите можат да ги нагодат регистрациските поставки за нивните програми " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Забелешката нема профил" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2390,13 +2392,13 @@ msgstr "%1$s статус на %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "тип на содржини " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2551,23 +2553,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Нагодувања за патеки и сервери за оваа StatusNet веб-страница." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Директориумот на темата е нечитлив: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Директориумот на аватарот е недостапен за пишување: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Директориумот на позадината е нечитлив: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Директориумот на локалите е нечитлив: %s" #: actions/pathsadminpanel.php:183 @@ -2709,8 +2711,8 @@ msgid "People search" msgstr "Пребарување на луѓе" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Не е важечка ознака за луѓе: %s" #: actions/peopletag.php:142 @@ -2719,7 +2721,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Користници самоозначени со %1$s - стр. %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Неважечка содржина на забелешката" #: actions/postnotice.php:101 @@ -2867,8 +2870,8 @@ msgid "Settings saved." msgstr "Нагодувањата се зачувани" #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Надминато е ограничувањето на страницата (%s)" #: actions/public.php:92 @@ -3789,7 +3792,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Минималниот дозволен текст изнесува 0 (неограничено)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "Ограничувањето на дуплирањето мора да изнесува барем 1 секунда." #: actions/siteadminpanel.php:221 @@ -3883,7 +3887,8 @@ msgid "Unable to save site notice." msgstr "Не можам да ја зачувам објавата за веб-страницата." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "Објавата за цела веб-страница не треба да има повеќе од 255 знаци" #: actions/sitenoticeadminpanel.php:176 @@ -4256,7 +4261,8 @@ msgid "User is not silenced." msgstr "Корисникот не е замолчен." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Во барањето нема id на профилот." #: actions/unsubscribe.php:98 @@ -6234,6 +6240,10 @@ msgstr "Грешка во внесувањето на новиот профил" msgid "Error inserting avatar" msgstr "Грешка во внесувањето на аватарот" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Грешка во подновувањето на далечинскиот профил" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Грешка во внесувањето на далечинскиот профил" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index fdb079aff9..997f443bb5 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:52+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:02+0000\n" "Language-Team: Norwegian (bokmål)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -80,7 +80,8 @@ msgstr "Lagre" #. 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" +#, fuzzy +msgid "No such page." msgstr "Ingen slik side" #: actions/all.php:75 actions/allrss.php:68 @@ -228,9 +229,10 @@ msgid "This method requires a POST." msgstr "Denne metoden krever en POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "Du må angi en verdi for parameteren 'device' med en av: sms, im, none" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -431,10 +433,9 @@ msgstr "Plassering er for lang (maks 255 tegn)." msgid "Too many aliases! Maximum %d." msgstr "For mange alias! Maksimum %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Ugyldig alias: «%s»" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -451,7 +452,8 @@ msgstr "Alias kan ikke være det samme som kallenavn." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Gruppe ikke funnet!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -640,9 +642,9 @@ msgstr "Ingen status med den ID-en funnet." msgid "That's too long. Max notice size is %d chars." msgstr "Det er for langt. Maks notisstørrelse er %d tegn." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Ikke funnet" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Ikke funnet." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -703,10 +705,6 @@ msgstr "Notiser merket med %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringer merket med %1$s på %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Ikke funnet." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Ingen slike vedlegg." @@ -737,10 +735,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Bruker uten samsvarende profil" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Bruker uten samsvarende profil." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -895,8 +893,8 @@ msgid "That confirmation code is not for you!" msgstr "Den bekreftelseskoden er ikke til deg." #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Ukjent adressetype %s" #: actions/confirmaddress.php:94 @@ -1052,8 +1050,8 @@ msgid "Invalid logo URL." msgstr "Ugyldig logo-URL." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Tema ikke tilgjengelig: %s" #: actions/designadminpanel.php:375 @@ -1258,6 +1256,11 @@ msgstr "Bruk dette skjemaet for å redigere gruppen." msgid "description is too long (max %d chars)." msgstr "beskrivelse er for lang (maks %d tegn)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig alias: «%s»" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Kunne ikke oppdatere gruppe." @@ -1564,9 +1567,10 @@ msgstr "" 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/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Feil ved repetering av notis." #: actions/getfile.php:79 msgid "No such file." @@ -1683,10 +1687,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Du kan laste opp en logo for gruppen din. Maks filstørrelse er %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Bruker uten samsvarende profil." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -1927,8 +1927,8 @@ msgid "Invites have been disabled." msgstr "Invitasjoner har blitt deaktivert." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Du må være innlogget for å invitere andre brukere til å bruke %s" #: actions/invite.php:72 @@ -2149,7 +2149,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Kan ikke gjøre %1$s til administrator for gruppen %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Ingen nåværende status" #: actions/newapplication.php:52 @@ -2309,11 +2310,11 @@ msgid "You are not a user of that application." msgstr "Du er ikke bruker av dette programmet." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Kunne ikke tilbakekalle tilgang for programmet: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Du har ikke tillatt noen programmer å bruke din konto." @@ -2322,8 +2323,9 @@ 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 "" +#, fuzzy +msgid "Notice has no profile." +msgstr "Brukeren har ingen profil." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2333,13 +2335,13 @@ msgstr "%1$s sin status på %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "innholdstype " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2495,23 +2497,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "" #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Tema ikke tilgjengelig: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Avatarmappe" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Bakgrunnsmappe" #: actions/pathsadminpanel.php:177 #, php-format -msgid "Locales directory not readable: %s" +msgid "Locales directory not readable: %s." msgstr "" #: actions/pathsadminpanel.php:183 @@ -2653,7 +2655,7 @@ msgstr "Personsøk" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "Ugyldig e-postadresse" #: actions/peopletag.php:142 @@ -2662,8 +2664,9 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Mikroblogg av %s" #: actions/postnotice.php:95 -msgid "Invalid notice content" -msgstr "" +#, fuzzy +msgid "Invalid notice content." +msgstr "Ugyldig symbol." #: actions/postnotice.php:101 #, php-format @@ -2807,8 +2810,8 @@ msgid "Settings saved." msgstr "Innstillinger lagret." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Over sidegrensen (%s)" #: actions/public.php:92 @@ -3695,7 +3698,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3785,7 +3788,7 @@ msgid "Unable to save site notice." msgstr "Kunne ikke lagre dine innstillinger for utseende." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4145,8 +4148,9 @@ msgid "User is not silenced." msgstr "" #: actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" +#, fuzzy +msgid "No profile ID in request." +msgstr "Ingen profil med den ID'en." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -6045,6 +6049,10 @@ msgstr "" msgid "Error inserting avatar" msgstr "" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index d5303d5eba..ea76c63e4e 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:59+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:08+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -81,7 +81,8 @@ msgstr "Opslaan" #. 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" +#, fuzzy +msgid "No such page." msgstr "Deze pagina bestaat niet" #: actions/all.php:75 actions/allrss.php:68 @@ -230,9 +231,10 @@ msgid "This method requires a POST." msgstr "Deze methode vereist een POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "U moet een parameter met de naam \"device\" opgeven met een van de volgende " "waardes: sms, im, none" @@ -440,10 +442,9 @@ msgstr "Locatie is te lang (maximaal 255 tekens)." msgid "Too many aliases! Maximum %d." msgstr "Te veel aliassen! Het maximale aantal is %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Ongeldige alias: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -460,7 +461,8 @@ msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "De groep is niet aangetroffen!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -657,9 +659,9 @@ msgstr "Er is geen status gevonden met dit ID." msgid "That's too long. Max notice size is %d chars." msgstr "De mededeling is te lang. Gebruik maximaal %d tekens." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Niet gevonden" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Niet aangetroffen." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -722,10 +724,6 @@ msgstr "Mededelingen met het label %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates met het label %1$s op %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Niet aangetroffen." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Deze bijlage bestaat niet." @@ -757,10 +755,10 @@ msgstr "" "U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Gebruiker zonder bijbehorend profiel" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Gebruiker zonder bijbehorend profiel." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -899,9 +897,9 @@ msgstr "Deblokkeer deze gebruiker." #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Verzenden naar " +msgstr "Verzenden naar %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -916,8 +914,8 @@ msgid "That confirmation code is not for you!" msgstr "Dit is niet uw bevestigingscode!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Onbekend adrestype %s" #: actions/confirmaddress.php:94 @@ -1074,8 +1072,8 @@ msgid "Invalid logo URL." msgstr "De logo-URL is ongeldig." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "De vormgeving is niet beschikbaar: %s" #: actions/designadminpanel.php:375 @@ -1281,6 +1279,11 @@ msgstr "Gebruik dit formulier om de groep te bewerken." msgid "description is too long (max %d chars)." msgstr "de beschrijving is te lang (maximaal %d tekens)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ongeldige alias: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Het was niet mogelijk de groep bij te werken." @@ -1594,8 +1597,9 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" "De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "" "Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." @@ -1722,10 +1726,6 @@ msgstr "" "Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %" "s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Gebruiker zonder bijbehorend profiel." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selecteer een vierkant uit de afbeelding die het logo wordt." @@ -1976,8 +1976,8 @@ msgid "Invites have been disabled." msgstr "Het is niet mogelijk uitnodigingen te verzenden." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "U moet aangemeld zijn om anderen te kunnen uitnodigen gebruik te maken van %s" @@ -2213,7 +2213,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Het is niet mogelijk %1$s beheerder te maken van de groep %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Geen huidige status" #: actions/newapplication.php:52 @@ -2381,12 +2382,12 @@ msgid "You are not a user of that application." msgstr "U bent geen gebruiker van die applicatie." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "" "Het was niet mogelijk de toegang te ontzeggen voor de volgende applicatie: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" "U hebt geen enkele applicatie geautoriseerd voor toegang tot uw " @@ -2398,7 +2399,8 @@ msgstr "" "Ontwikkelaars kunnen de registratiegegevens voor hun applicaties bewerken " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Mededeling heeft geen profiel" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2409,13 +2411,13 @@ msgstr "Status van %1$s op %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" -msgstr "inhoudstype " +msgid "Content type %s not supported." +msgstr "inhoudstype %s wordt niet ondersteund" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2568,23 +2570,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Pad- en serverinstellingen voor de StatusNet-website." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Er kan niet uit de vormgevingmap gelezen worden: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Er kan niet in de avatarmap geschreven worden: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Er kan niet in de achtergrondmap geschreven worden: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Er kan niet uit de talenmap gelezen worden: %s" #: actions/pathsadminpanel.php:183 @@ -2726,8 +2728,8 @@ msgid "People search" msgstr "Gebruikers zoeken" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Geen geldig gebruikerslabel: %s" #: actions/peopletag.php:142 @@ -2736,7 +2738,8 @@ 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:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Ongeldige mededelinginhoud" #: actions/postnotice.php:101 @@ -2886,8 +2889,8 @@ msgid "Settings saved." msgstr "De instellingen zijn opgeslagen." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Meer dan de paginalimiet (%s)" #: actions/public.php:92 @@ -3187,12 +3190,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Een langere naam, mogelijk uw echte naam" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " +"Mijn teksten en bestanden zijn beschikbaar onder %s, \n" +"behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " "telefoonnummer." #: actions/register.php:542 @@ -3812,7 +3816,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "De minimale tekstlimiet is 0 tekens (ongelimiteerd)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "De duplicaatlimiet moet één of meer seconden zijn." #: actions/siteadminpanel.php:221 @@ -3908,7 +3913,8 @@ msgid "Unable to save site notice." msgstr "Het was niet mogelijk om de websitebrede mededeling op te slaan." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "De maximale lengte voor de websitebrede aankondiging is 255 tekens" #: actions/sitenoticeadminpanel.php:176 @@ -4286,7 +4292,8 @@ msgid "User is not silenced." msgstr "Deze gebruiker is niet gemuilkorfd." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Het profiel-ID was niet aanwezig in het verzoek." #: actions/unsubscribe.php:98 @@ -5904,9 +5911,9 @@ msgstr "SMS-bevestiging" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "Er wordt gewacht op bevestiging van dit telefoonnummer." +msgstr "%s: bevestig dat u deze telefoon bezit met deze code:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 @@ -6037,6 +6044,9 @@ msgid "" "\n" "\t%s" msgstr "" +"Het volledige gesprek is hier te lezen:\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format @@ -6281,6 +6291,11 @@ msgstr "Er is een fout opgetreden tijdens het invoegen van een nieuw profiel" msgid "Error inserting avatar" msgstr "Er is een fout opgetreden bij het toevoegen van de avatar" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" +"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index c25317b394..2e980cce2d 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:27:56+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:05+0000\n" "Language-Team: Norwegian Nynorsk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -88,7 +88,7 @@ msgstr "Lagra" #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy -msgid "No such page" +msgid "No such page." msgstr "Dette emneord finst ikkje." #: actions/all.php:75 actions/allrss.php:68 @@ -232,7 +232,7 @@ msgstr "Dette krev ein POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -439,10 +439,9 @@ msgstr "Plassering er for lang (maksimalt 255 teikn)." msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "Ugyldig merkelapp: %s" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -460,7 +459,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "Fann ikkje API-metode." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -656,9 +655,9 @@ msgstr "Fann ingen status med den ID-en." msgid "That's too long. Max notice size is %d chars." msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Fann ikkje" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Finst ikkje." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -720,10 +719,6 @@ msgstr "Notisar merka med %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Finst ikkje." - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -755,9 +750,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kan laste opp ein personleg avatar." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "Kan ikkje finne brukar" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -916,8 +912,8 @@ msgid "That confirmation code is not for you!" msgstr "Den godkjenningskoden er ikkje for deg!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Ukjend adressetype %s" #: actions/confirmaddress.php:94 @@ -1084,7 +1080,7 @@ msgstr "Ugyldig storleik." #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/designadminpanel.php:375 @@ -1309,6 +1305,11 @@ msgstr "Bruk dette skjemaet for å redigere gruppa" msgid "description is too long (max %d chars)." msgstr "skildringa er for lang (maks 140 teikn)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig merkelapp: %s" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." @@ -1622,8 +1623,9 @@ msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." msgid "Remote service uses unknown version of OMB protocol." msgstr "Ukjend versjon av OMB-protokollen." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Feil ved oppdatering av ekstern profil" #: actions/getfile.php:79 @@ -1756,11 +1758,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Du kan lasta opp ein logo for gruppa." -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Kan ikkje finne brukar" - #: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." @@ -2005,8 +2002,8 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Du må verta logga inn for å invitera andre brukarar til %s" #: actions/invite.php:72 @@ -2236,7 +2233,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Du må være administrator for å redigere gruppa" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Ingen status" #: actions/newapplication.php:52 @@ -2407,11 +2405,11 @@ msgid "You are not a user of that application." msgstr "Du er ikkje medlem av den gruppa." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2420,7 +2418,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Notisen har ingen profil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2431,13 +2430,13 @@ msgstr "%1$s sin status på %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "Kopla til" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2598,23 +2597,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2765,8 +2764,8 @@ msgid "People search" msgstr "Søk etter folk" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Ikkje gyldig merkelapp: %s" #: actions/peopletag.php:142 @@ -2775,7 +2774,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Brukarar sjølv-merka med %s, side %d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Ugyldig notisinnhald" #: actions/postnotice.php:101 @@ -2924,7 +2924,7 @@ msgstr "Lagra innstillingar." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3820,7 +3820,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3915,7 +3915,7 @@ msgid "Unable to save site notice." msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4291,7 +4291,8 @@ msgid "User is not silenced." msgstr "Brukaren har inga profil." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Ingen profil-ID i førespurnaden." #: actions/unsubscribe.php:98 @@ -6215,6 +6216,10 @@ msgstr "Feil med å henta inn ny profil" msgid "Error inserting avatar" msgstr "Feil med innhenting av brukarbilete." +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Feil ved oppdatering av ekstern profil" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Feil med å henta inn ekstern profil" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 097f8ae446..c3734a945f 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:02+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:11+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -85,7 +85,8 @@ msgstr "Zapisz" #. 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" +#, fuzzy +msgid "No such page." msgstr "Nie ma takiej strony" #: actions/all.php:75 actions/allrss.php:68 @@ -234,9 +235,10 @@ msgid "This method requires a POST." msgstr "Ta metoda wymaga POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Należy podać parametr o nazwie \"device\" z jedną z wartości: sms, im, none" @@ -438,10 +440,9 @@ msgstr "Położenie jest za długie (maksymalnie 255 znaków)." msgid "Too many aliases! Maximum %d." msgstr "Za dużo aliasów. Maksymalnie %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Nieprawidłowy alias: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -458,7 +459,8 @@ msgstr "Alias nie może być taki sam jak pseudonim." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Nie odnaleziono grupy." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -648,9 +650,9 @@ msgstr "Nie odnaleziono stanów z tym identyfikatorem." msgid "That's too long. Max notice size is %d chars." msgstr "Wpis jest za długi. Maksymalna długość wynosi %d znaków." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Nie odnaleziono" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Nie odnaleziono." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -711,10 +713,6 @@ msgstr "Wpisy ze znacznikiem %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s." -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Nie odnaleziono." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Nie ma takiego załącznika." @@ -745,10 +743,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Można wysłać osobisty awatar. Maksymalny rozmiar pliku to %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Użytkownik bez odpowiadającego profilu" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Użytkownik bez odpowiadającego profilu." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -886,9 +884,9 @@ msgstr "Odblokuj tego użytkownika" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Wyślij do " +msgstr "Wyślij do %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -903,8 +901,8 @@ msgid "That confirmation code is not for you!" msgstr "Ten kod potwierdzający nie jest przeznaczony dla ciebie." #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Nierozpoznany typ adresu %s" #: actions/confirmaddress.php:94 @@ -1059,8 +1057,8 @@ msgid "Invalid logo URL." msgstr "Nieprawidłowy adres URL logo." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Motyw nie jest dostępny: %s" #: actions/designadminpanel.php:375 @@ -1264,6 +1262,11 @@ msgstr "Użyj tego formularza, aby zmodyfikować grupę." msgid "description is too long (max %d chars)." msgstr "opis jest za długi (maksymalnie %d znaków)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Nieprawidłowy alias: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Nie można zaktualizować grupy." @@ -1572,8 +1575,9 @@ msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." msgid "Remote service uses unknown version of OMB protocol." msgstr "Zdalna usługa używa nieznanej wersji protokołu OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Błąd podczas aktualizowania zdalnego profilu" #: actions/getfile.php:79 @@ -1693,10 +1697,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Użytkownik bez odpowiadającego profilu." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Wybierz kwadratowy obszar obrazu, który będzie logo." @@ -1945,8 +1945,8 @@ msgid "Invites have been disabled." msgstr "Zaproszenia zostały wyłączone." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" @@ -2180,7 +2180,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Nie można uczynić %1$s administratorem grupy %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Brak obecnego stanu" #: actions/newapplication.php:52 @@ -2346,11 +2347,11 @@ msgid "You are not a user of that application." msgstr "Nie jesteś użytkownikiem tej aplikacji." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Nie można unieważnić dostępu dla aplikacji: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Nie upoważniono żadnych aplikacji do używania konta." @@ -2359,7 +2360,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "Programiści mogą zmodyfikować ustawienia rejestracji swoich aplikacji " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Wpis nie posiada profilu" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2370,14 +2372,14 @@ msgstr "Stan użytkownika %1$s na %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" -msgstr "typ zawartości " +msgid "Content type %s not supported." +msgstr "typ zawartości %s jest nieobsługiwany" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 -#, php-format -msgid "Only %s urls over plain http please" -msgstr "" +#, fuzzy, php-format +msgid "Only %s URLs over plain HTTP please." +msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 @@ -2529,23 +2531,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Ustawienia ścieżki i serwera dla tej witryny StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Katalog motywu jest nieczytelny: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Katalog awatara jest niezapisywalny: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Katalog tła jest niezapisywalny: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Katalog lokalizacji jest nieczytelny: %s" #: actions/pathsadminpanel.php:183 @@ -2689,8 +2691,8 @@ msgid "People search" msgstr "Wyszukiwanie osób" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Nieprawidłowy znacznik osób: %s" #: actions/peopletag.php:142 @@ -2699,7 +2701,8 @@ 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:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Nieprawidłowa zawartość wpisu" #: actions/postnotice.php:101 @@ -2844,8 +2847,8 @@ msgid "Settings saved." msgstr "Zapisano ustawienia." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Poza ograniczeniem strony (%s)" #: actions/public.php:92 @@ -3141,13 +3144,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" imię i nazwisko" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -" poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i " -"numer telefonu." +"Tekst i pliki są dostępne na warunkach licencji %s, poza tymi prywatnymi " +"danymi: hasło, adres e-mail, adres komunikatora i numer telefonu." #: actions/register.php:542 #, php-format @@ -3762,7 +3765,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Minimalne ograniczenie tekstu to 0 (bez ograniczenia)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "Ograniczenie duplikatów musi wynosić jedną lub więcej sekund." #: actions/siteadminpanel.php:221 @@ -3854,7 +3858,8 @@ msgid "Unable to save site notice." msgstr "Nie można zapisać wpisu witryny." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "Maksymalna długość wpisu witryny to 255 znaków" #: actions/sitenoticeadminpanel.php:176 @@ -4229,7 +4234,8 @@ msgid "User is not silenced." msgstr "Użytkownik nie jest wyciszony." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Brak identyfikatora profilu w żądaniu." #: actions/unsubscribe.php:98 @@ -4918,6 +4924,8 @@ msgstr "" #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" +"Wszystkie treści i dane na stronie %1$s są dostępne na warunkach licencji %2" +"$s." #: lib/action.php:1156 msgid "Pagination" @@ -5835,9 +5843,9 @@ msgstr "Potwierdzenie SMS" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "Oczekiwanie na potwierdzenie tego numeru telefonu." +msgstr "%s: proszę potwierdzić własny numer telefonu za pomocą tego kodu:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 @@ -5966,6 +5974,9 @@ msgid "" "\n" "\t%s" msgstr "" +"Pełną rozmowę można przeczytać tutaj:\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format @@ -5999,6 +6010,29 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"Użytkownik %1$s (@%9$s) właśnie wysłał wpis dla ciebie (odpowiedź \\\"@\\\") " +"na %2$s.\n" +"\n" +"Wpis:\n" +"\n" +"%3$s\n" +"\n" +"O treści:\n" +"\n" +"%4$s\n" +"\n" +"%5$sMożna odpowiedzieć tutaj:\n" +"\n" +"%6$s\n" +"\n" +"Lista wszystkich odpowiedzi \\\"@\\\" do ciebie znajduje się tutaj:\n" +"\n" +"%7$s\n" +"\n" +"Z poważaniem,\n" +"%2$s\n" +"\n" +"PS Można wyłączyć powiadomienia przez e-mail tutaj: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6206,6 +6240,10 @@ msgstr "Błąd podczas wprowadzania nowego profilu" msgid "Error inserting avatar" msgstr "Błąd podczas wprowadzania awatara" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Błąd podczas aktualizowania zdalnego profilu" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Błąd podczas wprowadzania zdalnego profilu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 84c5d8eff9..ea485df0b1 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:06+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:14+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -85,7 +85,8 @@ msgstr "Gravar" #. 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" +#, fuzzy +msgid "No such page." msgstr "Página não encontrada." #: actions/all.php:75 actions/allrss.php:68 @@ -232,9 +233,10 @@ msgid "This method requires a POST." msgstr "Este método requer um POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Tem de especificar um parâmetro 'aparelho' com um dos valores: sms, im, none" @@ -435,10 +437,9 @@ msgstr "Localidade demasiado longa (máx. 255 caracteres)." msgid "Too many aliases! Maximum %d." msgstr "Demasiados sinónimos (máx. %d)." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Sinónimo inválido: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -455,7 +456,8 @@ msgstr "Os sinónimos não podem ser iguais ao nome do utilizador." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Grupo não foi encontrado!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -647,9 +649,9 @@ msgstr "Não foi encontrado um estado com esse ID." msgid "That's too long. Max notice size is %d chars." msgstr "Demasiado longo. Tamanho máx. das notas é %d caracteres." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Não encontrado" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Não encontrado." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -710,10 +712,6 @@ msgstr "Notas categorizadas com %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizações categorizadas com %1$s em %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Não encontrado." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Anexo não encontrado." @@ -744,10 +742,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Pode carregar o seu avatar pessoal. O tamanho máximo do ficheiro é %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Utilizador sem perfil correspondente" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Utilizador sem perfil correspondente." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -903,8 +901,8 @@ msgid "That confirmation code is not for you!" msgstr "Esse código de confirmação não é para si!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Tipo do endereço %s não reconhecido" #: actions/confirmaddress.php:94 @@ -1067,8 +1065,8 @@ msgid "Invalid logo URL." msgstr "URL do logotipo inválida." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Tema não está disponível: %s" #: actions/designadminpanel.php:375 @@ -1286,6 +1284,11 @@ msgstr "Use este formulário para editar o grupo." msgid "description is too long (max %d chars)." msgstr "descrição é demasiada extensa (máx. %d caracteres)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Sinónimo inválido: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Não foi possível actualizar o grupo." @@ -1597,8 +1600,9 @@ msgstr "Não foi possível converter a chave de pedido numa chave de acesso." msgid "Remote service uses unknown version of OMB protocol." msgstr "Serviço remoto usa uma versão desconhecida do protocolo OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Erro ao actualizar o perfil remoto" #: actions/getfile.php:79 @@ -1725,10 +1729,6 @@ msgstr "" "Pode carregar uma imagem para logotipo do seu grupo. O tamanho máximo do " "ficheiro é %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Utilizador sem perfil correspondente." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Escolha uma área quadrada da imagem para ser o logotipo." @@ -1978,8 +1978,8 @@ msgid "Invites have been disabled." msgstr "Convites foram desabilitados." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "Precisa de iniciar uma sessão para convidar outros utilizadores a usarem o " "site %s." @@ -2214,7 +2214,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Não é possível tornar %1$s administrador do grupo %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Sem estado actual" #: actions/newapplication.php:52 @@ -2386,11 +2387,11 @@ msgid "You are not a user of that application." msgstr "Não é um membro desse grupo." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2399,7 +2400,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Nota não tem perfil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2410,13 +2412,13 @@ msgstr "Estado de %1$s em %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "tipo de conteúdo " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2576,23 +2578,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Configurações de localização e servidor deste site StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Sem acesso de leitura do directório do tema: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Sem acesso de escrita no directório do avatar: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Sem acesso de escrita no directório do fundo: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Sem acesso de leitura ao directório de idiomas: %s" #: actions/pathsadminpanel.php:183 @@ -2734,8 +2736,8 @@ msgid "People search" msgstr "Pesquisa de pessoas" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Categoria de pessoas inválida: %s" #: actions/peopletag.php:142 @@ -2744,7 +2746,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utilizadores auto-categorizados com %1$s - página %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Conteúdo da nota é inválido" #: actions/postnotice.php:101 @@ -2889,8 +2892,8 @@ msgid "Settings saved." msgstr "Configurações gravadas." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Além do limite de página (%s)" #: actions/public.php:92 @@ -3817,7 +3820,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "O valor mínimo de limite para o texto é 140 caracteres." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "O limite de duplicados tem de ser 1 ou mais segundos." #: actions/siteadminpanel.php:221 @@ -3911,7 +3915,7 @@ 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" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4289,7 +4293,8 @@ msgid "User is not silenced." msgstr "Utilizador não está silenciado." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "O pedido não tem a identificação do perfil." #: actions/unsubscribe.php:98 @@ -6289,6 +6294,10 @@ msgstr "Erro ao inserir perfil novo" msgid "Error inserting avatar" msgstr "Erro ao inserir avatar" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Erro ao actualizar o perfil remoto" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erro ao inserir perfil remoto" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 7099211787..b27cffde3d 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:14+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:17+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -83,7 +83,8 @@ msgstr "Salvar" #. 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" +#, fuzzy +msgid "No such page." msgstr "Esta página não existe." #: actions/all.php:75 actions/allrss.php:68 @@ -232,9 +233,10 @@ msgid "This method requires a POST." msgstr "Este método requer um POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Você pode especificar um parâmetro denominado 'device', com um dos valores: " "sms, im, none" @@ -438,10 +440,9 @@ msgstr "Localização muito extensa (máx. 255 caracteres)." msgid "Too many aliases! Maximum %d." msgstr "Muitos apelidos! O máximo são %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Apelido inválido: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -458,7 +459,8 @@ msgstr "O apelido não pode ser igual à identificação." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "O grupo não foi encontrado!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -653,9 +655,9 @@ msgstr "Não foi encontrada nenhuma mensagem com esse ID." msgid "That's too long. Max notice size is %d chars." msgstr "Está muito extenso. O tamanho máximo é de %s caracteres." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Não encontrado" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Não encontrado." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -716,10 +718,6 @@ msgstr "Mensagens etiquetadas como %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Mensagens etiquetadas como %1$s no %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Não encontrado." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Este anexo não existe." @@ -751,9 +749,9 @@ msgstr "" "Você pode enviar seu avatar pessoal. O tamanho máximo do arquivo é de %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." msgstr "Usuário sem um perfil correspondente" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -910,8 +908,8 @@ msgid "That confirmation code is not for you!" msgstr "Esse não é o seu código de confirmação!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Tipo de endereço desconhecido %s" #: actions/confirmaddress.php:94 @@ -1067,8 +1065,8 @@ msgid "Invalid logo URL." msgstr "A URL da logo é inválida." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Tema não disponível: %s" #: actions/designadminpanel.php:375 @@ -1274,6 +1272,11 @@ msgstr "Use esse formulário para editar o grupo." msgid "description is too long (max %d chars)." msgstr "descrição muito extensa (máximo %d caracteres)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Apelido inválido: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." @@ -1586,8 +1589,9 @@ msgstr "Não foi possível converter o token de requisição para token de acess msgid "Remote service uses unknown version of OMB protocol." msgstr "O serviço remoto usa uma versão desconhecida do protocolo OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Ocorreu um erro na atualização do perfil remoto" #: actions/getfile.php:79 @@ -1712,10 +1716,6 @@ msgstr "" "Você pode enviar uma imagem de logo para o seu grupo. O tamanho máximo do " "arquivo é %s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Usuário sem um perfil correspondente" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selecione uma área quadrada da imagem para definir a logo" @@ -1967,8 +1967,8 @@ msgid "Invites have been disabled." msgstr "Os convites foram desabilitados." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "Você deve estar autenticado para convidar outros usuários para usar o %s" @@ -2204,7 +2204,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Não foi possível tornar %1$s um administrador do grupo %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Nenhuma mensagem atual" #: actions/newapplication.php:52 @@ -2372,11 +2373,11 @@ msgid "You are not a user of that application." msgstr "Você não é um usuário dessa aplicação." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Não foi possível revogar o acesso para a aplicação: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Você não autorizou nenhuma aplicação a usar a sua conta." @@ -2387,7 +2388,8 @@ msgstr "" "aplicações " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "A mensagem não está associada a nenhum perfil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2398,13 +2400,13 @@ msgstr "Mensagem de %1$s no %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "tipo de conteúdo " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2559,23 +2561,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Configurações dos caminhos e do servidor para este site StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Sem permissão de leitura no diretório de temas: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Sem permissão de escrita no diretório de avatares: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Sem permissão de escrita no diretório de imagens de fundo: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Sem permissão de leitura no diretório de locales: %s" #: actions/pathsadminpanel.php:183 @@ -2717,8 +2719,8 @@ msgid "People search" msgstr "Procurar pessoas" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Não é uma etiqueta de pessoa válida: %s" #: actions/peopletag.php:142 @@ -2727,7 +2729,8 @@ 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:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "O conteúdo da mensagem é inválido" #: actions/postnotice.php:101 @@ -2873,8 +2876,8 @@ msgid "Settings saved." msgstr "As configurações foram salvas." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Além do limite da página (%s)" #: actions/public.php:92 @@ -3796,7 +3799,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "O valor mínimo para o limite de texto é 0 (sem limites)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "O limite de duplicatas deve ser de um ou mais segundos." #: actions/siteadminpanel.php:221 @@ -3888,7 +3892,8 @@ msgid "Unable to save site notice." msgstr "Não foi possível salvar os avisos do site." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "O tamanho máximo para os avisos é de 255 caracteres." #: actions/sitenoticeadminpanel.php:176 @@ -4258,7 +4263,8 @@ msgid "User is not silenced." msgstr "O usuário não está silenciado." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Nenhuma ID de perfil na requisição." #: actions/unsubscribe.php:98 @@ -6237,6 +6243,10 @@ msgstr "Erro na inserção do novo perfil" msgid "Error inserting avatar" msgstr "Erro na inserção do avatar" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Ocorreu um erro na atualização do perfil remoto" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erro na inserção do perfil remoto" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index b4fdd52810..a89f9b76fd 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:18+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:20+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -85,7 +85,8 @@ msgstr "Сохранить" #. 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" +#, fuzzy +msgid "No such page." msgstr "Нет такой страницы" #: actions/all.php:75 actions/allrss.php:68 @@ -232,9 +233,10 @@ msgid "This method requires a POST." msgstr "Этот метод требует POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "Укажите параметр с именем 'device' и значением sms, im или none." #: actions/apiaccountupdatedeliverydevice.php:132 @@ -439,10 +441,9 @@ msgstr "Слишком длинное месторасположение (мак msgid "Too many aliases! Maximum %d." msgstr "Слишком много алиасов! Максимальное число — %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Неверный алиас: «%s»" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -459,7 +460,8 @@ msgstr "Алиас не может совпадать с именем." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Группа не найдена!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -650,9 +652,9 @@ msgstr "Не найдено статуса с таким ID." msgid "That's too long. Max notice size is %d chars." msgstr "Слишком длинная запись. Максимальная длина — %d знаков." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Не найдено" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Не найдено." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -713,10 +715,6 @@ msgstr "Записи с тегом %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Обновления с тегом %1$s на %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не найдено." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Нет такого вложения." @@ -748,10 +746,10 @@ msgstr "" "Вы можете загрузить свою аватару. Максимальный размер файла составляет %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Пользователь без соответствующего профиля" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Пользователь без соответствующего профиля." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -906,8 +904,8 @@ msgid "That confirmation code is not for you!" msgstr "Это не Ваш код подтверждения!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Нераспознанный тип адреса %s" #: actions/confirmaddress.php:94 @@ -1063,8 +1061,8 @@ msgid "Invalid logo URL." msgstr "Неверный URL логотипа." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Тема не доступна: %s" #: actions/designadminpanel.php:375 @@ -1270,6 +1268,11 @@ msgstr "Заполните информацию о группе в следую msgid "description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум %d символов)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неверный алиас: «%s»" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе." @@ -1587,8 +1590,9 @@ msgstr "Не удаётся преобразовать ключ запроса msgid "Remote service uses unknown version of OMB protocol." msgstr "Удалённый сервис использует неизвестную версию протокола OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Ошибка обновления удалённого профиля" #: actions/getfile.php:79 @@ -1712,10 +1716,6 @@ msgstr "" "Здесь вы можете загрузить логотип для группы. Максимальный размер файла " "составляет %s." -#: 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 "Подберите нужный квадратный участок для вашего логотипа." @@ -1966,8 +1966,8 @@ msgid "Invites have been disabled." msgstr "Приглашения отключены." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "" "Вы должны авторизоваться, чтобы приглашать других пользователей следовать за " "%s" @@ -2200,7 +2200,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Невозможно сделать %1$s администратором группы %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Нет текущего статуса" #: actions/newapplication.php:52 @@ -2365,11 +2366,11 @@ msgid "You are not a user of that application." msgstr "Вы не являетесь пользователем этого приложения." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Не удаётся отозвать права для приложения: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Вы не разрешили приложениям использовать вашу учётную запись." @@ -2378,7 +2379,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "Разработчики могут изменять настройки регистрации своих приложений " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Запись без профиля" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2389,13 +2391,13 @@ msgstr "Статус %1$s на %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "тип содержимого " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2550,23 +2552,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Настройки путей и серверов для этого сайта StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Директория тем недоступна для чтения: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Директория аватар не доступна для записи: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Директория фоновых изображений не доступна для записи: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Директория локализаций не доступна для чтения: %s" #: actions/pathsadminpanel.php:183 @@ -2707,8 +2709,8 @@ msgid "People search" msgstr "Поиск людей" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Неверный тег человека: %s" #: actions/peopletag.php:142 @@ -2717,7 +2719,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Пользователи, установившие себе тег %1$s — страница %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Неверный контент записи" #: actions/postnotice.php:101 @@ -2861,8 +2864,8 @@ msgid "Settings saved." msgstr "Настройки сохранены." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Превышен предел страницы (%s)" #: actions/public.php:92 @@ -3781,7 +3784,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Минимальное ограничение текста составляет 0 (без ограничений)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "Ограничение дублирования должно составлять 1 или более секунд." #: actions/siteadminpanel.php:221 @@ -3873,7 +3877,8 @@ msgid "Unable to save site notice." msgstr "Не удаётся сохранить уведомление сайта." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "Максимальная длина уведомления сайта составляет 255 символов" #: actions/sitenoticeadminpanel.php:176 @@ -4249,7 +4254,8 @@ msgid "User is not silenced." msgstr "Пользователь не заглушён." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Нет ID профиля в запросе." #: actions/unsubscribe.php:98 @@ -6220,6 +6226,10 @@ msgstr "Ошибка при вставке нового профиля" msgid "Error inserting avatar" msgstr "Ошибка при вставке аватары" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Ошибка обновления удалённого профиля" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Ошибка вставки удалённого профиля" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index baef4d7bee..5ced0617fb 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -77,7 +77,7 @@ msgstr "" #. 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" +msgid "No such page." msgstr "" #: actions/all.php:75 actions/allrss.php:68 @@ -219,7 +219,7 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -415,10 +415,9 @@ msgstr "" msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -435,7 +434,7 @@ msgstr "" #: 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!" +msgid "Group not found." msgstr "" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -621,8 +620,8 @@ msgstr "" msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:202 -msgid "Not found" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." msgstr "" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 @@ -684,10 +683,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "" - #: actions/attachment.php:73 msgid "No such attachment." msgstr "" @@ -718,9 +713,9 @@ 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:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -874,7 +869,7 @@ msgstr "" #: actions/confirmaddress.php:90 #, php-format -msgid "Unrecognized address type %s" +msgid "Unrecognized address type %s." msgstr "" #: actions/confirmaddress.php:94 @@ -1024,7 +1019,7 @@ msgstr "" #: actions/designadminpanel.php:279 #, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "" #: actions/designadminpanel.php:375 @@ -1228,6 +1223,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "" @@ -1524,8 +1524,8 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +msgid "Error updating remote profile." msgstr "" #: actions/getfile.php:79 @@ -1642,10 +1642,6 @@ 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 "" @@ -1873,7 +1869,7 @@ msgstr "" #: actions/invite.php:41 #, php-format -msgid "You must be logged in to invite other users to use %s" +msgid "You must be logged in to invite other users to use %s." msgstr "" #: actions/invite.php:72 @@ -2069,7 +2065,7 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "" #: actions/microsummary.php:69 -msgid "No current status" +msgid "No current status." msgstr "" #: actions/newapplication.php:52 @@ -2226,11 +2222,11 @@ msgid "You are not a user of that application." msgstr "" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2239,7 +2235,7 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +msgid "Notice has no profile." msgstr "" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2250,13 +2246,13 @@ msgstr "" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2410,22 +2406,22 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "" #: actions/pathsadminpanel.php:163 #, php-format -msgid "Avatar directory not writable: %s" +msgid "Avatar directory not writable: %s." msgstr "" #: actions/pathsadminpanel.php:169 #, php-format -msgid "Background directory not writable: %s" +msgid "Background directory not writable: %s." msgstr "" #: actions/pathsadminpanel.php:177 #, php-format -msgid "Locales directory not readable: %s" +msgid "Locales directory not readable: %s." msgstr "" #: actions/pathsadminpanel.php:183 @@ -2565,7 +2561,7 @@ msgstr "" #: actions/peopletag.php:68 #, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "" #: actions/peopletag.php:142 @@ -2574,7 +2570,7 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "" #: actions/postnotice.php:95 -msgid "Invalid notice content" +msgid "Invalid notice content." msgstr "" #: actions/postnotice.php:101 @@ -2715,7 +2711,7 @@ msgstr "" #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3548,7 +3544,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3636,7 +3632,7 @@ msgid "Unable to save site notice." msgstr "" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -3986,7 +3982,7 @@ msgid "User is not silenced." msgstr "" #: actions/unsubscribe.php:77 -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "" #: actions/unsubscribe.php:98 @@ -5783,6 +5779,10 @@ msgstr "" msgid "Error inserting avatar" msgstr "" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index e736c8a186..00c4a2376e 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:21+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:23+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -81,7 +81,8 @@ msgstr "Spara" #. 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" +#, fuzzy +msgid "No such page." msgstr "Ingen sådan sida" #: actions/all.php:75 actions/allrss.php:68 @@ -228,9 +229,10 @@ msgid "This method requires a POST." msgstr "Denna metod kräver en POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "Du måste ange ett värdet på parametern 'device': sms, im, none" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -429,10 +431,9 @@ msgstr "Beskrivning av plats är för lång (max 255 tecken)." msgid "Too many aliases! Maximum %d." msgstr "För många alias! Maximum %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Ogiltigt alias: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -449,7 +450,8 @@ msgstr "Alias kan inte vara samma som smeknamn." #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Grupp hittades inte!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -638,9 +640,9 @@ msgstr "Ingen status med det ID:t hittades." msgid "That's too long. Max notice size is %d chars." msgstr "Det är för långt. Maximal notisstorlek är %d tecken." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Hittades inte" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Hittades inte." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -701,10 +703,6 @@ msgstr "Notiser taggade med %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Uppdateringar taggade med %1$s på %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Hittades inte." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Ingen sådan bilaga." @@ -736,10 +734,10 @@ msgstr "" "Du kan ladda upp din personliga avatar. Den maximala filstorleken är %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Användare utan matchande profil" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Användare utan matchande profil." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -895,8 +893,8 @@ msgid "That confirmation code is not for you!" msgstr "Denna bekräftelsekod är inte för dig!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Adresstypen %s känns inte igen" #: actions/confirmaddress.php:94 @@ -1052,8 +1050,8 @@ msgid "Invalid logo URL." msgstr "Ogiltig logtyp-URL." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Tema inte tillgängligt: %s" #: actions/designadminpanel.php:375 @@ -1259,6 +1257,11 @@ msgstr "Använd detta formulär för att redigera gruppen." msgid "description is too long (max %d chars)." msgstr "beskrivning är för lång (max %d tecken)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ogiltigt alias: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Kunde inte uppdatera grupp." @@ -1567,8 +1570,9 @@ msgstr "Kunde inte konvertera token för begäran till token för åtkomst." msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjärrtjänsten använder en okänd version av OMB-protokollet." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Fel vid uppdatering av fjärrprofil" #: actions/getfile.php:79 @@ -1691,10 +1695,6 @@ msgstr "" "Du kan ladda upp en logotypbild för din grupp. Den maximala filstorleken är %" "s." -#: actions/grouplogo.php:181 -msgid "User without matching profile." -msgstr "Användare utan matchande profil." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Välj ett kvadratiskt område i bilden som logotyp" @@ -1944,8 +1944,8 @@ msgid "Invites have been disabled." msgstr "Inbjudningar har blivit inaktiverade." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Du måste vara inloggad för att kunna bjuda in andra användare till %s" #: actions/invite.php:72 @@ -2177,7 +2177,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Kan inte göra %1$s till en administratör för grupp %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Ingen aktuell status" #: actions/newapplication.php:52 @@ -2344,11 +2345,11 @@ msgid "You are not a user of that application." msgstr "Du är inte en användare av den applikationen." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Kunde inte återkalla åtkomst för applikation: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Du har inte tillåtit några applikationer att använda ditt konto." @@ -2358,7 +2359,8 @@ msgstr "" "Utvecklare kan redigera registreringsinställningarna för sina applikationer " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Notisen har ingen profil" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2369,13 +2371,13 @@ msgstr "%1$ss status den %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "innehållstyp " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2528,23 +2530,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Sökvägs- och serverinställningar för denna StatusNet-webbplats." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Katalog med teman är inte läsbar: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Katalog med avatarer är inte skrivbar: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Katalog med bakgrunder är inte skrivbar: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Katalog med lokaliseringfiler (locales) är inte läsbar. %s" #: actions/pathsadminpanel.php:183 @@ -2686,8 +2688,8 @@ msgid "People search" msgstr "Personsökning" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Inte en giltig persontagg: %s" #: actions/peopletag.php:142 @@ -2696,7 +2698,8 @@ 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:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Ogiltigt notisinnehåll" #: actions/postnotice.php:101 @@ -2842,8 +2845,8 @@ msgid "Settings saved." msgstr "Inställningar sparade." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Bortom sidbegränsningen (%s)" #: actions/public.php:92 @@ -3761,7 +3764,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Minsta textbegränsning är 0 (obegränsat)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "Begränsning av duplikat måste vara en eller fler sekuner." #: actions/siteadminpanel.php:221 @@ -3852,7 +3856,8 @@ msgid "Unable to save site notice." msgstr "Kunde inte spara webbplatsnotis." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "Maximal längd för webbplatsnotisen är 255 tecken" #: actions/sitenoticeadminpanel.php:176 @@ -4224,7 +4229,8 @@ msgid "User is not silenced." msgstr "Användare är inte nedtystad." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "Ingen profil-ID i begäran." #: actions/unsubscribe.php:98 @@ -6190,6 +6196,10 @@ msgstr "Fel vid infogning av ny profil" msgid "Error inserting avatar" msgstr "Fel vid infogning av avatar" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Fel vid uppdatering av fjärrprofil" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Fel vid infogning av fjärrprofilen" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 37ffdc223b..6a5c982828 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:26+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:29+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -80,7 +80,8 @@ msgstr "భద్రపరచు" #. 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" +#, fuzzy +msgid "No such page." msgstr "అటువంటి పేజీ లేదు" #: actions/all.php:75 actions/allrss.php:68 @@ -223,7 +224,7 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -425,10 +426,9 @@ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉ msgid "Too many aliases! Maximum %d." msgstr "చాలా మారుపేర్లు! %d గరిష్ఠం." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "తప్పుడు మారుపేరు: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -445,7 +445,8 @@ msgstr "మారుపేరు పేరుతో సమానంగా ఉం #: 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!" +#, fuzzy +msgid "Group not found." msgstr "గుంపు దొరకలేదు!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -634,9 +635,9 @@ msgstr "ఆ IDతో ఏ నోటీసు కనబడలేదు." msgid "That's too long. Max notice size is %d chars." msgstr "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "దొరకలేదు" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "కనబడలేదు." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -697,10 +698,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "కనబడలేదు." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "అటువంటి జోడింపు లేదు." @@ -732,10 +729,11 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "మీ వ్యక్తిగత అవతారాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -892,8 +890,8 @@ msgid "That confirmation code is not for you!" msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "గుర్తుతెలియని చిరునామా రకం %s" #: actions/confirmaddress.php:94 @@ -1046,8 +1044,8 @@ msgid "Invalid logo URL." msgstr "చిహ్నపు URL చెల్లదు." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "అలంకారం అందుబాటులో లేదు: %s" #: actions/designadminpanel.php:375 @@ -1253,6 +1251,11 @@ msgstr "గుంపుని మార్చడానికి ఈ ఫారా msgid "description is too long (max %d chars)." msgstr "వివరణ చాలా పెద్దదిగా ఉంది (140 అక్షరాలు గరిష్ఠం)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "తప్పుడు మారుపేరు: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "గుంపుని తాజాకరించలేకున్నాం." @@ -1552,8 +1555,9 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" #: actions/getfile.php:79 @@ -1674,11 +1678,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "మీ గుంపుకి మీరు ఒక చిహ్నాన్ని ఎక్కించవచ్చు. ఆ ఫైలు యొక్క గరిష్ఠ పరిమాణం %s." -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "వాడుకరికి ప్రొఫైలు లేదు." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "చిహ్నంగా ఉండాల్సిన చతురస్త్ర ప్రదేశాన్ని బొమ్మ నుండి ఎంచుకోండి." @@ -1914,8 +1913,8 @@ msgid "Invites have been disabled." msgstr "ఆహ్వానాలని అచేతనం చేసారు." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "%sని ఉపయోగించమని ఇతర వాడుకరులని ఆహ్వానించడానికి మీరు ప్రవేశించి ఉండాలి" #: actions/invite.php:72 @@ -2115,7 +2114,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "%s ఇప్పటికే \"%s\" గుంపు యొక్క ఒక నిర్వాకులు." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "ప్రస్తుత స్థితి ఏమీ లేదు" #: actions/newapplication.php:52 @@ -2278,11 +2278,11 @@ msgid "You are not a user of that application." msgstr "మీరు ఆ ఉపకరణం యొక్క వాడుకరి కాదు." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2291,8 +2291,9 @@ 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 "" +#, fuzzy +msgid "Notice has no profile." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2302,13 +2303,13 @@ msgstr "%2$sలో %1$s యొక్క స్థితి" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "విషయ రకం " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2467,23 +2468,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "హోమ్ పేజీ URL సరైనది కాదు." #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "నేపథ్యాల సంచయం" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2630,7 +2631,7 @@ msgstr "వ్యక్తుల అన్వేషణ" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" #: actions/peopletag.php:142 @@ -2639,7 +2640,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "%s యొక్క మైక్రోబ్లాగు" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "సందేశపు విషయం సరైనది కాదు" #: actions/postnotice.php:101 @@ -2783,7 +2785,7 @@ msgstr "అమరికలు భద్రమయ్యాయి." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3655,7 +3657,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "కనిష్ఠ పాఠ్య పరిమితి 140 అక్షరాలు." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3745,7 +3747,8 @@ msgid "Unable to save site notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "సైటు-వారీ నోటీసుకి గరిష్ఠ పొడవు 255 అక్షరాలు" #: actions/sitenoticeadminpanel.php:176 @@ -4106,8 +4109,9 @@ msgid "User is not silenced." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" +#, fuzzy +msgid "No profile ID in request." +msgstr "అధీకరణ అభ్యర్థన లేదు!" #: actions/unsubscribe.php:98 #, fuzzy @@ -5981,6 +5985,10 @@ msgstr "కొత్త ప్రొపైలుని చేర్చటంల msgid "Error inserting avatar" msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "దూరపు ప్రొపైలుని చేర్చటంలో పొరపాటు" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index de350a0dc5..e498fae5bc 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:29+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:32+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -88,7 +88,7 @@ msgstr "Kaydet" #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy -msgid "No such page" +msgid "No such page." msgstr "Böyle bir durum mesajı yok." #: actions/all.php:75 actions/allrss.php:68 @@ -232,7 +232,7 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -440,10 +440,9 @@ msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "%s Geçersiz başlangıç sayfası" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -461,7 +460,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "İstek bulunamadı!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -658,9 +657,10 @@ msgid "That's too long. Max notice size is %d chars." msgstr "" "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "İstek bulunamadı!" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -722,11 +722,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "İstek bulunamadı!" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -758,10 +753,11 @@ 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:106 -msgid "User without matching profile" -msgstr "" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." +msgstr "Kullanıcının profili yok." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -923,8 +919,8 @@ msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Tanınmayan adres türü %s" #: actions/confirmaddress.php:94 @@ -1087,7 +1083,7 @@ msgstr "Geçersiz büyüklük." #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/designadminpanel.php:375 @@ -1308,6 +1304,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "%s Geçersiz başlangıç sayfası" + #: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." @@ -1616,8 +1617,9 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "OMB protokolünün bilinmeğen sürümü." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Uzaktaki profili güncellemede hata oluştu" #: actions/getfile.php:79 @@ -1747,11 +1749,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Kullanıcının profili yok." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2000,9 +1997,9 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "Kullanıcı güncellenemedi." #: actions/invite.php:72 #, php-format @@ -2207,8 +2204,9 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Kullanıcının profili yok." #: actions/microsummary.php:69 -msgid "No current status" -msgstr "" +#, fuzzy +msgid "No current status." +msgstr "Sonuç yok" #: actions/newapplication.php:52 #, fuzzy @@ -2370,11 +2368,11 @@ msgid "You are not a user of that application." msgstr "Bize o profili yollamadınız" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2383,7 +2381,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2394,13 +2393,13 @@ msgstr "%1$s'in %2$s'deki durum mesajları " #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "Bağlan" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2563,23 +2562,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2730,7 +2729,7 @@ msgstr "Kişi Arama" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "Geçersiz bir eposta adresi." #: actions/peopletag.php:142 @@ -2739,7 +2738,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "%s adli kullanicinin durum mesajlari" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Geçersiz durum mesajı" #: actions/postnotice.php:101 @@ -2889,7 +2889,7 @@ msgstr "Ayarlar kaydedildi." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3756,7 +3756,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3849,7 +3849,7 @@ msgid "Unable to save site notice." msgstr "Durum mesajını kaydederken hata oluştu." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4220,7 +4220,7 @@ msgstr "Kullanıcının profili yok." #: actions/unsubscribe.php:77 #, fuzzy -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "Yetkilendirme isteği yok!" #: actions/unsubscribe.php:98 @@ -6130,6 +6130,10 @@ msgstr "Yeni profil eklemede hata oluştu" msgid "Error inserting avatar" msgstr "Avatar eklemede hata oluştu" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Uzaktaki profili güncellemede hata oluştu" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Uzak profil eklemede hata oluştu" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 094ea46f40..be9d5a1888 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:32+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:35+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -84,7 +84,8 @@ msgstr "Зберегти" #. 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" +#, fuzzy +msgid "No such page." msgstr "Немає такої сторінки" #: actions/all.php:75 actions/allrss.php:68 @@ -230,9 +231,10 @@ msgid "This method requires a POST." msgstr "Цей метод потребує POST." #: actions/apiaccountupdatedeliverydevice.php:105 +#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" "Ви мусите встановити параметр «девайс» з одним зі значень: СМС, ІМ, жоден" @@ -434,10 +436,9 @@ msgstr "Розташування надто довге (255 знаків мак msgid "Too many aliases! Maximum %d." msgstr "Забагато додаткових імен! Максимум становить %d." -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" +#: actions/apigroupcreate.php:266 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." msgstr "Помилкове додаткове ім’я: \"%s\"" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -454,7 +455,8 @@ msgstr "Додаткове ім’я не може бути таким сами #: 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!" +#, fuzzy +msgid "Group not found." msgstr "Групу не знайдено!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -647,9 +649,9 @@ msgstr "Не знайдено жодних статусів з таким ID." msgid "That's too long. Max notice size is %d chars." msgstr "Надто довго. Максимальний розмір допису — %d знаків." -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "Не знайдено" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Не знайдено." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -712,10 +714,6 @@ msgstr "Дописи позначені з %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Оновлення позначені з %1$s на %2$s!" -#: actions/apiusershow.php:96 -msgid "Not found." -msgstr "Не знайдено." - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Такого вкладення немає." @@ -746,10 +744,10 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Ви можете завантажити аватару. Максимальний розмір %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 -msgid "User without matching profile" -msgstr "Користувач з невідповідним профілем" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." +msgstr "Користувач без відповідного профілю." #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 @@ -904,8 +902,8 @@ msgid "That confirmation code is not for you!" msgstr "Цей код підтвердження не для Вас!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Невизначений тип адреси %s" #: actions/confirmaddress.php:94 @@ -1059,8 +1057,8 @@ msgid "Invalid logo URL." msgstr "Помилкова URL-адреса логотипу." #: actions/designadminpanel.php:279 -#, php-format -msgid "Theme not available: %s" +#, fuzzy, php-format +msgid "Theme not available: %s." msgstr "Тема не доступна: %s" #: actions/designadminpanel.php:375 @@ -1266,6 +1264,11 @@ msgstr "Скористайтесь цією формою, щоб відреда msgid "description is too long (max %d chars)." msgstr "опис надто довгий (%d знаків максимум)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Помилкове додаткове ім’я: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Не вдалося оновити групу." @@ -1571,8 +1574,9 @@ msgstr "Не вдалося перетворити токени запиту н msgid "Remote service uses unknown version of OMB protocol." msgstr "Невідома версія протоколу OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Помилка при оновленні віддаленого профілю" #: actions/getfile.php:79 @@ -1696,10 +1700,6 @@ msgstr "" "Ви маєте можливість завантажити логотип для Вашої группи. Максимальний " "розмір файлу %s." -#: 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 "Оберіть квадратну ділянку зображення, яка й буде логотипом групи." @@ -1951,8 +1951,8 @@ msgid "Invites have been disabled." msgstr "Запрошення були скасовані." #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Ви маєте спочатку увійти, аби мати змогу запросити когось до %s" #: actions/invite.php:72 @@ -2187,7 +2187,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Не можна надати %1$s права адміна в групі %2$s." #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "Ніякого поточного статусу" #: actions/newapplication.php:52 @@ -2354,11 +2355,11 @@ msgid "You are not a user of that application." msgstr "Ви не є користувачем даного додатку." #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." msgstr "Не вдалося скасувати доступ для додатку: " #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "Ви не дозволили жодним додаткам використовувати Ваш акаунт." @@ -2367,7 +2368,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "Розробники можуть змінити налаштування реєстрації для їхніх додатків " #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Допис не має профілю" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2378,13 +2380,13 @@ msgstr "%1$s має статус на %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "тип змісту " #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2539,23 +2541,23 @@ msgid "Path and server settings for this StatusNet site." msgstr "Шлях та налаштування серверу для цього сайту StatusNet." #: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s" +#, fuzzy, php-format +msgid "Theme directory not readable: %s." msgstr "Дирикторію теми неможна прочитати: %s" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." msgstr "Щось не так із написанням директорії аватари: %s" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" +#, fuzzy, php-format +msgid "Background directory not writable: %s." msgstr "Щось не так із написанням директорії фону: %s" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." msgstr "Не можу прочитати директорію локалі: %s" #: actions/pathsadminpanel.php:183 @@ -2697,8 +2699,8 @@ msgid "People search" msgstr "Пошук людей" #: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s" +#, fuzzy, php-format +msgid "Not a valid people tag: %s." msgstr "Це недійсний особистий теґ: %s" #: actions/peopletag.php:142 @@ -2707,7 +2709,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Користувачі з особистим теґом %1$s — сторінка %2$d" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Недійсний зміст допису" #: actions/postnotice.php:101 @@ -2852,8 +2855,8 @@ msgid "Settings saved." msgstr "Налаштування збережено." #: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." msgstr "Досягнуто ліміту сторінки (%s)" #: actions/public.php:92 @@ -3768,7 +3771,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Ліміт текстових повідомлень становить 0 (необмежено)." #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +#, fuzzy +msgid "Dupe limit must be one or more seconds." msgstr "" "Часове обмеження при надсиланні дублікату повідомлення має становити від 1 і " "більше секунд." @@ -3862,7 +3866,8 @@ msgid "Unable to save site notice." msgstr "Не вдається зберегти повідомлення сайту." #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +#, fuzzy +msgid "Max length for the site-wide notice is 255 chars." msgstr "Максимальна довжина повідомлення сайту становить 255 символів" #: actions/sitenoticeadminpanel.php:176 @@ -4233,7 +4238,8 @@ msgid "User is not silenced." msgstr "Користувач поки що має право голосу." #: actions/unsubscribe.php:77 -msgid "No profile id in request." +#, fuzzy +msgid "No profile ID in request." msgstr "У запиті відсутній ID профілю." #: actions/unsubscribe.php:98 @@ -6199,6 +6205,10 @@ msgstr "Помилка при додаванні нового профілю" msgid "Error inserting avatar" msgstr "Помилка при додаванні аватари" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Помилка при оновленні віддаленого профілю" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Помилка при додаванні віддаленого профілю" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index de8d34c6da..20e0582197 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:35+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:38+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -87,7 +87,7 @@ msgstr "Lưu" #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy -msgid "No such page" +msgid "No such page." msgstr "Không có tin nhắn nào." #: actions/all.php:75 actions/allrss.php:68 @@ -231,7 +231,7 @@ msgstr "Phương thức này yêu cầu là POST." #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -442,10 +442,9 @@ msgstr "Tên khu vực quá dài (không quá 255 ký tự)." msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "Trang chủ '%s' không hợp lệ" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -463,7 +462,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "Phương thức API không tìm thấy!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -659,8 +658,9 @@ msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." msgid "That's too long. Max notice size is %d chars." msgstr "Quá dài. Tối đa là 140 ký tự." -#: actions/apistatusesupdate.php:202 -msgid "Not found" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." msgstr "Không tìm thấy" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 @@ -723,11 +723,6 @@ msgstr "Thông báo được gắn thẻ %s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" -#: actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "Không tìm thấy" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -761,10 +756,10 @@ msgstr "" "về bạn." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#: actions/userrss.php:106 +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 #, fuzzy -msgid "User without matching profile" +msgid "User without matching profile." msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -927,8 +922,8 @@ msgid "That confirmation code is not for you!" msgstr "Mã xác nhận này không phải của bạn!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "Không nhận dạng kiểu địa chỉ %s" #: actions/confirmaddress.php:94 @@ -1095,7 +1090,7 @@ msgstr "Kích thước không hợp lệ." #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: actions/designadminpanel.php:375 @@ -1327,6 +1322,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Trang chủ '%s' không hợp lệ" + #: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." @@ -1655,8 +1655,9 @@ msgstr "Không thể chuyển các token yêu cầu đến token truy cập." msgid "Remote service uses unknown version of OMB protocol." msgstr "Không biết phiên bản của giao thức OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" #: actions/getfile.php:79 @@ -1790,11 +1791,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2046,8 +2042,8 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " #: actions/invite.php:72 @@ -2287,8 +2283,9 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " #: actions/microsummary.php:69 -msgid "No current status" -msgstr "" +#, fuzzy +msgid "No current status." +msgstr "Không có kết quả nào" #: actions/newapplication.php:52 #, fuzzy @@ -2459,11 +2456,11 @@ msgid "You are not a user of that application." msgstr "Bạn chưa cập nhật thông tin riêng" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2472,7 +2469,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "Tin nhắn không có hồ sơ cá nhân" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2483,13 +2481,13 @@ msgstr "Trạng thái của %1$s vào %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "Kết nối" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2656,23 +2654,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Background Theme:" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2829,7 +2827,7 @@ msgstr "Tìm kiếm nhiều người" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "Địa chỉ email không hợp lệ." #: actions/peopletag.php:142 @@ -2838,7 +2836,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Dòng tin nhắn cho %s" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "Nội dung tin nhắn không hợp lệ" #: actions/postnotice.php:101 @@ -2987,7 +2986,7 @@ msgstr "Đã lưu các điều chỉnh." #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3879,7 +3878,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3974,7 +3973,7 @@ msgid "Unable to save site notice." msgstr "Không thể lưu thông tin Twitter của bạn!" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4361,7 +4360,7 @@ msgstr "Người dùng không có thông tin." #: actions/unsubscribe.php:77 #, fuzzy -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "Không có URL cho hồ sơ để quay về." #: actions/unsubscribe.php:98 @@ -6359,6 +6358,10 @@ msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" msgid "Error inserting avatar" msgstr "Lỗi xảy ra khi thêm mới hình đại diện" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 178ce7de00..c0633fc1ab 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:39+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:41+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -89,7 +89,8 @@ msgstr "保存" #. 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" +#, fuzzy +msgid "No such page." msgstr "没有该页面" #: actions/all.php:75 actions/allrss.php:68 @@ -233,7 +234,7 @@ msgstr "此方法接受POST请求。" #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -440,10 +441,9 @@ msgstr "位置过长(不能超过255个字符)。" msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "主页'%s'不正确" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -461,7 +461,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "API 方法未实现!" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -657,8 +657,9 @@ msgstr "没有找到此ID的信息。" msgid "That's too long. Max notice size is %d chars." msgstr "超出长度限制。不能超过 140 个字符。" -#: actions/apistatusesupdate.php:202 -msgid "Not found" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." msgstr "未找到" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 @@ -721,11 +722,6 @@ msgstr "带 %s 标签的通告" msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" -#: actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "未找到" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -757,9 +753,10 @@ 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:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +#, fuzzy +msgid "User without matching profile." msgstr "找不到匹配的用户。" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -922,8 +919,8 @@ msgid "That confirmation code is not for you!" msgstr "此确认码不适用!" #: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" +#, fuzzy, php-format +msgid "Unrecognized address type %s." msgstr "不可识别的地址类型 %s" #: actions/confirmaddress.php:94 @@ -1090,7 +1087,7 @@ msgstr "大小不正确。" #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "这个页面不提供您想要的媒体类型" #: actions/designadminpanel.php:375 @@ -1315,6 +1312,11 @@ msgstr "使用这个表单来编辑组" msgid "description is too long (max %d chars)." msgstr "描述过长(不能超过140字符)。" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "主页'%s'不正确" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "无法更新组" @@ -1630,8 +1632,9 @@ msgstr "无法将请求标记转换为访问令牌。" msgid "Remote service uses unknown version of OMB protocol." msgstr "此OMB协议版本无效。" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "更新远程的个人信息时出错" #: actions/getfile.php:79 @@ -1766,11 +1769,6 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "你可以给你的组上载一个logo图。" -#: actions/grouplogo.php:181 -#, fuzzy -msgid "User without matching profile." -msgstr "找不到匹配的用户。" - #: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." @@ -2016,8 +2014,8 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." msgstr "您必须登录才能邀请其他人使用 %s" #: actions/invite.php:72 @@ -2241,7 +2239,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "只有admin才能编辑这个组" #: actions/microsummary.php:69 -msgid "No current status" +#, fuzzy +msgid "No current status." msgstr "没有当前状态" #: actions/newapplication.php:52 @@ -2408,11 +2407,11 @@ msgid "You are not a user of that application." msgstr "您未告知此个人信息" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2421,7 +2420,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" +#, fuzzy +msgid "Notice has no profile." msgstr "通告没有关联个人信息" #: actions/oembed.php:86 actions/shownotice.php:175 @@ -2432,13 +2432,13 @@ msgstr "%1$s 的 %2$s 状态" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "连接" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2602,23 +2602,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "这个页面不提供您想要的媒体类型" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "这个页面不提供您想要的媒体类型" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "这个页面不提供您想要的媒体类型" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "这个页面不提供您想要的媒体类型" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2771,7 +2771,7 @@ msgstr "搜索用户" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "不是有效的电子邮件" #: actions/peopletag.php:142 @@ -2780,7 +2780,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "用户自加标签 %s - 第 %d 页" #: actions/postnotice.php:95 -msgid "Invalid notice content" +#, fuzzy +msgid "Invalid notice content." msgstr "通告内容不正确" #: actions/postnotice.php:101 @@ -2925,7 +2926,7 @@ msgstr "设置已保存。" #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3816,7 +3817,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3911,7 +3912,7 @@ msgid "Unable to save site notice." msgstr "无法保存 Twitter 设置!" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4290,7 +4291,7 @@ msgstr "用户没有个人信息。" #: actions/unsubscribe.php:77 #, fuzzy -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "服务器没有返回个人信息URL。" #: actions/unsubscribe.php:98 @@ -6231,6 +6232,10 @@ msgstr "添加个人信息出错" msgid "Error inserting avatar" msgstr "添加头像出错" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "更新远程的个人信息时出错" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "添加远程的个人信息出错" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 0a93ac9800..d66ebabdd2 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 21:26+0000\n" -"PO-Revision-Date: 2010-04-09 21:28:42+0000\n" +"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"PO-Revision-Date: 2010-04-09 23:01:44+0000\n" "Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -84,7 +84,7 @@ msgstr "" #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 #, fuzzy -msgid "No such page" +msgid "No such page." msgstr "無此通知" #: actions/all.php:75 actions/allrss.php:68 @@ -228,7 +228,7 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:105 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " -"none" +"none." msgstr "" #: actions/apiaccountupdatedeliverydevice.php:132 @@ -432,10 +432,9 @@ msgstr "地點過長(共255個字)" msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:266 actions/editgroup.php:228 -#: actions/newgroup.php:168 +#: actions/apigroupcreate.php:266 #, fuzzy, php-format -msgid "Invalid alias: \"%s\"" +msgid "Invalid alias: \"%s\"." msgstr "個人首頁連結%s無效" #: actions/apigroupcreate.php:275 actions/editgroup.php:232 @@ -453,7 +452,7 @@ msgstr "" #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #, fuzzy -msgid "Group not found!" +msgid "Group not found." msgstr "目前無請求" #: actions/apigroupjoin.php:110 actions/joingroup.php:100 @@ -648,9 +647,10 @@ msgstr "" msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:202 -msgid "Not found" -msgstr "" +#: actions/apistatusesupdate.php:202 actions/apiusershow.php:96 +#, fuzzy +msgid "Not found." +msgstr "目前無請求" #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format @@ -711,11 +711,6 @@ msgstr "" msgid "Updates tagged with %1$s on %2$s!" msgstr "&s的微型部落格" -#: actions/apiusershow.php:96 -#, fuzzy -msgid "Not found." -msgstr "目前無請求" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -747,9 +742,9 @@ 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:106 -msgid "User without matching profile" +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:106 +msgid "User without matching profile." msgstr "" #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 @@ -912,7 +907,7 @@ msgstr "" #: actions/confirmaddress.php:90 #, php-format -msgid "Unrecognized address type %s" +msgid "Unrecognized address type %s." msgstr "" #: actions/confirmaddress.php:94 @@ -1075,7 +1070,7 @@ msgstr "尺寸錯誤" #: actions/designadminpanel.php:279 #, fuzzy, php-format -msgid "Theme not available: %s" +msgid "Theme not available: %s." msgstr "個人首頁位址錯誤" #: actions/designadminpanel.php:375 @@ -1294,6 +1289,11 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "個人首頁連結%s無效" + #: actions/editgroup.php:258 #, fuzzy msgid "Could not update group." @@ -1600,8 +1600,9 @@ msgstr "無法轉換請求標記以致無法存取標記" msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 -msgid "Error updating remote profile" +#: actions/finishremotesubscribe.php:138 +#, fuzzy +msgid "Error updating remote profile." msgstr "更新遠端個人資料發生錯誤" #: actions/getfile.php:79 @@ -1727,10 +1728,6 @@ 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 "" @@ -1967,9 +1964,9 @@ msgid "Invites have been disabled." msgstr "" #: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "無法更新使用者" #: actions/invite.php:72 #, php-format @@ -2165,8 +2162,9 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "無法從 %s 建立OpenID" #: actions/microsummary.php:69 -msgid "No current status" -msgstr "" +#, fuzzy +msgid "No current status." +msgstr "無結果" #: actions/newapplication.php:52 #, fuzzy @@ -2325,11 +2323,11 @@ msgid "You are not a user of that application." msgstr "無法連結到伺服器:%s" #: actions/oauthconnectionssettings.php:186 -msgid "Unable to revoke access for app: " +#, php-format +msgid "Unable to revoke access for app: %s." msgstr "" #: actions/oauthconnectionssettings.php:198 -#, php-format msgid "You have not authorized any applications to use your account." msgstr "" @@ -2338,8 +2336,9 @@ 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 "" +#, fuzzy +msgid "Notice has no profile." +msgstr "無此通知" #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2349,13 +2348,13 @@ msgstr "%1$s的狀態是%2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 #, fuzzy, php-format -msgid "content type %s not supported" +msgid "Content type %s not supported." msgstr "連結" #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format -msgid "Only %s urls over plain http please" +msgid "Only %s URLs over plain HTTP please." msgstr "" #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 @@ -2516,23 +2515,23 @@ msgstr "" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format -msgid "Theme directory not readable: %s" +msgid "Theme directory not readable: %s." msgstr "個人首頁位址錯誤" #: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "個人首頁位址錯誤" #: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "個人首頁位址錯誤" #: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s" -msgstr "" +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "個人首頁位址錯誤" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2678,7 +2677,7 @@ msgstr "" #: actions/peopletag.php:68 #, fuzzy, php-format -msgid "Not a valid people tag: %s" +msgid "Not a valid people tag: %s." msgstr "此信箱無效" #: actions/peopletag.php:142 @@ -2687,8 +2686,9 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "&s的微型部落格" #: actions/postnotice.php:95 -msgid "Invalid notice content" -msgstr "" +#, fuzzy +msgid "Invalid notice content." +msgstr "尺寸錯誤" #: actions/postnotice.php:101 #, php-format @@ -2831,7 +2831,7 @@ msgstr "" #: actions/public.php:83 #, php-format -msgid "Beyond the page limit (%s)" +msgid "Beyond the page limit (%s)." msgstr "" #: actions/public.php:92 @@ -3683,7 +3683,7 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "" #: actions/siteadminpanel.php:171 -msgid "Dupe limit must 1 or more seconds." +msgid "Dupe limit must be one or more seconds." msgstr "" #: actions/siteadminpanel.php:221 @@ -3776,7 +3776,7 @@ msgid "Unable to save site notice." msgstr "新訊息" #: actions/sitenoticeadminpanel.php:113 -msgid "Max length for the site-wide notice is 255 chars" +msgid "Max length for the site-wide notice is 255 chars." msgstr "" #: actions/sitenoticeadminpanel.php:176 @@ -4143,7 +4143,7 @@ msgstr "" #: actions/unsubscribe.php:77 #, fuzzy -msgid "No profile id in request." +msgid "No profile ID in request." msgstr "無確認請求" #: actions/unsubscribe.php:98 @@ -6020,6 +6020,10 @@ msgstr "新的更人資料輸入錯誤" msgid "Error inserting avatar" msgstr "個人圖像插入錯誤" +#: lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "更新遠端個人資料發生錯誤" + #: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" From 166c1edba97d065d0fd424621305fd016e644c43 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 00:58:57 +0200 Subject: [PATCH 46/80] Fix inconsistencies in clientError() messages * use correct punctuation * single quotes when replace was possible * wording updated when needed --- actions/apiaccountupdatedeliverydevice.php | 2 +- actions/apigroupcreate.php | 2 +- actions/apigroupismember.php | 2 +- actions/apigroupjoin.php | 2 +- actions/apigroupleave.php | 2 +- actions/apigroupmembership.php | 2 +- actions/apigroupshow.php | 2 +- actions/apistatusesupdate.php | 2 +- actions/apitimelinegroup.php | 2 +- actions/block.php | 2 +- actions/deleteuser.php | 4 ++-- actions/designadminpanel.php | 4 ++-- actions/disfavor.php | 2 +- actions/favor.php | 2 +- actions/grantrole.php | 8 ++++---- actions/invite.php | 2 +- actions/microsummary.php | 2 +- actions/oauthconnectionssettings.php | 4 ++-- actions/pathsadminpanel.php | 10 +++++----- actions/peopletag.php | 2 +- actions/postnotice.php | 2 +- actions/public.php | 2 +- actions/repeat.php | 10 +++++----- actions/revokerole.php | 6 +++--- actions/sandbox.php | 4 ++-- actions/shownotice.php | 2 +- actions/silence.php | 4 ++-- actions/siteadminpanel.php | 4 ++-- actions/sitenoticeadminpanel.php | 2 +- actions/snapshotadminpanel.php | 6 +++--- actions/unsandbox.php | 4 ++-- actions/unsilence.php | 4 ++-- actions/unsubscribe.php | 2 +- actions/userauthorization.php | 2 +- actions/userrss.php | 2 +- 35 files changed, 58 insertions(+), 58 deletions(-) diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php index 684906fe90..05d19c22de 100644 --- a/actions/apiaccountupdatedeliverydevice.php +++ b/actions/apiaccountupdatedeliverydevice.php @@ -103,7 +103,7 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction $this->clientError( _( 'You must specify a parameter named ' . - '\'device\' with a value of one of: sms, im, none' + '\'device\' with a value of one of: sms, im, none.' ) ); return; diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index 145806356c..3eb3ae5fcc 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -263,7 +263,7 @@ class ApiGroupCreateAction extends ApiAuthAction if (!$valid) { $this->clientError( - sprintf(_('Invalid alias: "%s"'), $alias), + sprintf(_('Invalid alias: "%s".'), $alias), 403, $this->format ); diff --git a/actions/apigroupismember.php b/actions/apigroupismember.php index 97f8435614..f51c747dfb 100644 --- a/actions/apigroupismember.php +++ b/actions/apigroupismember.php @@ -92,7 +92,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction } if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php index 374cf83df0..28df72fa9a 100644 --- a/actions/apigroupjoin.php +++ b/actions/apigroupjoin.php @@ -101,7 +101,7 @@ class ApiGroupJoinAction extends ApiAuthAction } if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index 9848ece053..f6e52b26e8 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -101,7 +101,7 @@ class ApiGroupLeaveAction extends ApiAuthAction } if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index 9f72b527cf..c97b27fac4 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -88,7 +88,7 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction parent::handle($args); if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 5745a81f41..8e471689a8 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -79,7 +79,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction common_redirect(common_local_url('ApiGroupShow', $args), 301); } else { $this->clientError( - _('Group not found!'), + _('Group not found.'), 404, $this->format ); diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 1956c85863..d4ef6b550d 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -199,7 +199,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction $reply_to = $this->in_reply_to_status_id; } else { $this->clientError( - _('Not found'), + _('Not found.'), $code = 404, $this->format ); diff --git a/actions/apitimelinegroup.php b/actions/apitimelinegroup.php index da816c40a9..56d1de094c 100644 --- a/actions/apitimelinegroup.php +++ b/actions/apitimelinegroup.php @@ -88,7 +88,7 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction parent::handle($args); if (empty($this->group)) { - $this->clientError(_('Group not found!'), 404, $this->format); + $this->clientError(_('Group not found.'), 404, $this->format); return false; } diff --git a/actions/block.php b/actions/block.php index fe4ec00881..7f609c253b 100644 --- a/actions/block.php +++ b/actions/block.php @@ -66,7 +66,7 @@ class BlockAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if ($cur->hasBlocked($this->profile)) { - $this->clientError(_("You already blocked that user.")); + $this->clientError(_('You already blocked that user.')); return false; } diff --git a/actions/deleteuser.php b/actions/deleteuser.php index 4e6b273953..42ef4b9f51 100644 --- a/actions/deleteuser.php +++ b/actions/deleteuser.php @@ -64,14 +64,14 @@ class DeleteuserAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::DELETEUSER)) { - $this->clientError(_("You cannot delete users.")); + $this->clientError(_('You cannot delete users.')); return false; } $this->user = User::staticGet('id', $this->profile->id); if (empty($this->user)) { - $this->clientError(_("You can only delete local users.")); + $this->clientError(_('You can only delete local users.')); return false; } diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index 30e8bde1a4..41d917e3ca 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -272,11 +272,11 @@ class DesignadminpanelAction extends AdminPanelAction { if (!empty($values['logo']) && !Validate::uri($values['logo'], array('allowed_schemes' => array('http', 'https')))) { - $this->clientError(_("Invalid logo URL.")); + $this->clientError(_('Invalid logo URL.')); } if (!in_array($values['theme'], Theme::listAvailable())) { - $this->clientError(sprintf(_("Theme not available: %s"), $values['theme'])); + $this->clientError(sprintf(_("Theme not available: %s."), $values['theme'])); } } diff --git a/actions/disfavor.php b/actions/disfavor.php index 6269f1bd25..3ccdd69af2 100644 --- a/actions/disfavor.php +++ b/actions/disfavor.php @@ -71,7 +71,7 @@ class DisfavorAction extends Action $notice = Notice::staticGet($id); $token = $this->trimmed('token-'.$notice->id); if (!$token || $token != common_session_token()) { - $this->clientError(_("There was a problem with your session token. Try again, please.")); + $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } $fave = new Fave(); diff --git a/actions/favor.php b/actions/favor.php index afca9768ae..475912fd0b 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -72,7 +72,7 @@ class FavorAction extends Action $notice = Notice::staticGet($id); $token = $this->trimmed('token-'.$notice->id); if (!$token || $token != common_session_token()) { - $this->clientError(_("There was a problem with your session token. Try again, please.")); + $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } if ($user->hasFave($notice)) { diff --git a/actions/grantrole.php b/actions/grantrole.php index cd6bd4d79a..b8b23d02e9 100644 --- a/actions/grantrole.php +++ b/actions/grantrole.php @@ -59,11 +59,11 @@ class GrantRoleAction extends ProfileFormAction $this->role = $this->arg('role'); if (!Profile_role::isValid($this->role)) { - $this->clientError(_("Invalid role.")); + $this->clientError(_('Invalid role.')); return false; } if (!Profile_role::isSettable($this->role)) { - $this->clientError(_("This role is reserved and cannot be set.")); + $this->clientError(_('This role is reserved and cannot be set.')); return false; } @@ -72,14 +72,14 @@ class GrantRoleAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::GRANTROLE)) { - $this->clientError(_("You cannot grant user roles on this site.")); + $this->clientError(_('You cannot grant user roles on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if ($this->profile->hasRole($this->role)) { - $this->clientError(_("User already has this role.")); + $this->clientError(_('User already has this role.')); return false; } diff --git a/actions/invite.php b/actions/invite.php index 54b2de62ac..5dac048b06 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -38,7 +38,7 @@ class InviteAction extends CurrentUserDesignAction if (!common_config('invite', 'enabled')) { $this->clientError(_('Invites have been disabled.')); } else if (!common_logged_in()) { - $this->clientError(sprintf(_('You must be logged in to invite other users to use %s'), + $this->clientError(sprintf(_('You must be logged in to invite other users to use %s.'), common_config('site', 'name'))); return; } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { diff --git a/actions/microsummary.php b/actions/microsummary.php index 5c761e8bb6..d145dc3bc7 100644 --- a/actions/microsummary.php +++ b/actions/microsummary.php @@ -66,7 +66,7 @@ class MicrosummaryAction extends Action $notice = $user->getCurrentNotice(); if (!$notice) { - $this->clientError(_('No current status'), 404); + $this->clientError(_('No current status.'), 404); } header('Content-Type: text/plain'); diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php index f125f4c631..8a206d7101 100644 --- a/actions/oauthconnectionssettings.php +++ b/actions/oauthconnectionssettings.php @@ -183,7 +183,7 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction if (!$result) { common_log_db_error($orig, 'DELETE', __FILE__); - $this->clientError(_('Unable to revoke access for app: ' . $app->id)); + $this->clientError(sprintf(_('Unable to revoke access for app: %s.'), $app->id)); return false; } @@ -195,7 +195,7 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction function showEmptyListMessage() { - $message = sprintf(_('You have not authorized any applications to use your account.')); + $message = _('You have not authorized any applications to use your account.'); $this->elementStart('div', 'guide'); $this->raw(common_markup_to_html($message)); diff --git a/actions/pathsadminpanel.php b/actions/pathsadminpanel.php index 9155a7e428..7ff3c2583a 100644 --- a/actions/pathsadminpanel.php +++ b/actions/pathsadminpanel.php @@ -154,19 +154,19 @@ class PathsadminpanelAction extends AdminPanelAction // Validate theme dir if (!empty($values['theme']['dir']) && !is_readable($values['theme']['dir'])) { - $this->clientError(sprintf(_("Theme directory not readable: %s"), $values['theme']['dir'])); + $this->clientError(sprintf(_("Theme directory not readable: %s."), $values['theme']['dir'])); } // Validate avatar dir if (empty($values['avatar']['dir']) || !is_writable($values['avatar']['dir'])) { - $this->clientError(sprintf(_("Avatar directory not writable: %s"), $values['avatar']['dir'])); + $this->clientError(sprintf(_("Avatar directory not writable: %s."), $values['avatar']['dir'])); } // Validate background dir if (empty($values['background']['dir']) || !is_writable($values['background']['dir'])) { - $this->clientError(sprintf(_("Background directory not writable: %s"), $values['background']['dir'])); + $this->clientError(sprintf(_("Background directory not writable: %s."), $values['background']['dir'])); } // Validate locales dir @@ -174,13 +174,13 @@ class PathsadminpanelAction extends AdminPanelAction // XXX: What else do we need to validate for lacales path here? --Z if (!empty($values['site']['locale_path']) && !is_readable($values['site']['locale_path'])) { - $this->clientError(sprintf(_("Locales directory not readable: %s"), $values['site']['locale_path'])); + $this->clientError(sprintf(_("Locales directory not readable: %s."), $values['site']['locale_path'])); } // Validate SSL setup if (mb_strlen($values['site']['sslserver']) > 255) { - $this->clientError(_("Invalid SSL server. The maximum length is 255 characters.")); + $this->clientError(_('Invalid SSL server. The maximum length is 255 characters.')); } } diff --git a/actions/peopletag.php b/actions/peopletag.php index 32652f7551..7287cfbf99 100644 --- a/actions/peopletag.php +++ b/actions/peopletag.php @@ -65,7 +65,7 @@ class PeopletagAction extends Action $this->tag = $this->trimmed('tag'); if (!common_valid_profile_tag($this->tag)) { - $this->clientError(sprintf(_('Not a valid people tag: %s'), + $this->clientError(sprintf(_('Not a valid people tag: %s.'), $this->tag)); return; } diff --git a/actions/postnotice.php b/actions/postnotice.php index b2f6f1bb95..694c7808d9 100644 --- a/actions/postnotice.php +++ b/actions/postnotice.php @@ -92,7 +92,7 @@ class PostnoticeAction extends Action { $content = common_shorten_links($_POST['omb_notice_content']); if (Notice::contentTooLong($content)) { - $this->clientError(_('Invalid notice content'), 400); + $this->clientError(_('Invalid notice content.'), 400); return false; } $license = $_POST['omb_notice_license']; diff --git a/actions/public.php b/actions/public.php index 8e9db10caf..5fc547feaf 100644 --- a/actions/public.php +++ b/actions/public.php @@ -80,7 +80,7 @@ class PublicAction extends Action $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; if ($this->page > MAX_PUBLIC_PAGE) { - $this->clientError(sprintf(_("Beyond the page limit (%s)"), MAX_PUBLIC_PAGE)); + $this->clientError(sprintf(_("Beyond the page limit (%s)."), MAX_PUBLIC_PAGE)); } common_set_returnto($this->selfUrl()); diff --git a/actions/repeat.php b/actions/repeat.php index e112496bc1..893cae4ffd 100644 --- a/actions/repeat.php +++ b/actions/repeat.php @@ -54,21 +54,21 @@ class RepeatAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - $this->clientError(_("Only logged-in users can repeat notices.")); + $this->clientError(_('Only logged-in users can repeat notices.')); return false; } $id = $this->trimmed('notice'); if (empty($id)) { - $this->clientError(_("No notice specified.")); + $this->clientError(_('No notice specified.')); return false; } $this->notice = Notice::staticGet('id', $id); if (empty($this->notice)) { - $this->clientError(_("No notice specified.")); + $this->clientError(_('No notice specified.')); return false; } @@ -80,14 +80,14 @@ class RepeatAction extends Action $token = $this->trimmed('token-'.$id); if (empty($token) || $token != common_session_token()) { - $this->clientError(_("There was a problem with your session token. Try again, please.")); + $this->clientError(_('There was a problem with your session token. Try again, please.')); return false; } $profile = $this->user->getProfile(); if ($profile->hasRepeated($id)) { - $this->clientError(_("You already repeated that notice.")); + $this->clientError(_('You already repeated that notice.')); return false; } diff --git a/actions/revokerole.php b/actions/revokerole.php index b78c1c25a4..c67b70fdaf 100644 --- a/actions/revokerole.php +++ b/actions/revokerole.php @@ -59,11 +59,11 @@ class RevokeRoleAction extends ProfileFormAction $this->role = $this->arg('role'); if (!Profile_role::isValid($this->role)) { - $this->clientError(_("Invalid role.")); + $this->clientError(_('Invalid role.')); return false; } if (!Profile_role::isSettable($this->role)) { - $this->clientError(_("This role is reserved and cannot be set.")); + $this->clientError(_('This role is reserved and cannot be set.')); return false; } @@ -72,7 +72,7 @@ class RevokeRoleAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::REVOKEROLE)) { - $this->clientError(_("You cannot revoke user roles on this site.")); + $this->clientError(_('You cannot revoke user roles on this site.')); return false; } diff --git a/actions/sandbox.php b/actions/sandbox.php index 5b034ff078..d1ef4c86b2 100644 --- a/actions/sandbox.php +++ b/actions/sandbox.php @@ -62,14 +62,14 @@ class SandboxAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SANDBOXUSER)) { - $this->clientError(_("You cannot sandbox users on this site.")); + $this->clientError(_('You cannot sandbox users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if ($this->profile->isSandboxed()) { - $this->clientError(_("User is already sandboxed.")); + $this->clientError(_('User is already sandboxed.')); return false; } diff --git a/actions/shownotice.php b/actions/shownotice.php index a23027f7c5..7be9618f86 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -97,7 +97,7 @@ class ShownoticeAction extends OwnerDesignAction $this->profile = $this->notice->getProfile(); if (empty($this->profile)) { - $this->serverError(_('Notice has no profile'), 500); + $this->serverError(_('Notice has no profile.'), 500); return false; } diff --git a/actions/silence.php b/actions/silence.php index 206e5ba878..09cc480d9e 100644 --- a/actions/silence.php +++ b/actions/silence.php @@ -62,14 +62,14 @@ class SilenceAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SILENCEUSER)) { - $this->clientError(_("You cannot silence users on this site.")); + $this->clientError(_('You cannot silence users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if ($this->profile->isSilenced()) { - $this->clientError(_("User is already silenced.")); + $this->clientError(_('User is already silenced.')); return false; } diff --git a/actions/siteadminpanel.php b/actions/siteadminpanel.php index e5482987fb..4238b3e85a 100644 --- a/actions/siteadminpanel.php +++ b/actions/siteadminpanel.php @@ -130,7 +130,7 @@ class SiteadminpanelAction extends AdminPanelAction // Validate site name if (empty($values['site']['name'])) { - $this->clientError(_("Site name must have non-zero length.")); + $this->clientError(_('Site name must have non-zero length.')); } // Validate email @@ -168,7 +168,7 @@ class SiteadminpanelAction extends AdminPanelAction // Validate dupe limit if (!Validate::number($values['site']['dupelimit'], array('min' => 1))) { - $this->clientError(_("Dupe limit must 1 or more seconds.")); + $this->clientError(_("Dupe limit must be one or more seconds.")); } } diff --git a/actions/sitenoticeadminpanel.php b/actions/sitenoticeadminpanel.php index a68cc699ca..bdcaa23557 100644 --- a/actions/sitenoticeadminpanel.php +++ b/actions/sitenoticeadminpanel.php @@ -110,7 +110,7 @@ class SitenoticeadminpanelAction extends AdminPanelAction if (mb_strlen($siteNotice) > 255) { $this->clientError( - _('Max length for the site-wide notice is 255 chars') + _('Max length for the site-wide notice is 255 chars.') ); } diff --git a/actions/snapshotadminpanel.php b/actions/snapshotadminpanel.php index a0c2315bc1..df6b168dc8 100644 --- a/actions/snapshotadminpanel.php +++ b/actions/snapshotadminpanel.php @@ -124,13 +124,13 @@ class SnapshotadminpanelAction extends AdminPanelAction // Validate snapshot run value if (!in_array($values['snapshot']['run'], array('web', 'cron', 'never'))) { - $this->clientError(_("Invalid snapshot run value.")); + $this->clientError(_('Invalid snapshot run value.')); } // Validate snapshot frequency value if (!Validate::number($values['snapshot']['frequency'])) { - $this->clientError(_("Snapshot frequency must be a number.")); + $this->clientError(_('Snapshot frequency must be a number.')); } // Validate report URL @@ -141,7 +141,7 @@ class SnapshotadminpanelAction extends AdminPanelAction array('allowed_schemes' => array('http', 'https') ) )) { - $this->clientError(_("Invalid snapshot report URL.")); + $this->clientError(_('Invalid snapshot report URL.')); } } } diff --git a/actions/unsandbox.php b/actions/unsandbox.php index 22f4d8e766..d50b5072ee 100644 --- a/actions/unsandbox.php +++ b/actions/unsandbox.php @@ -62,14 +62,14 @@ class UnsandboxAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SANDBOXUSER)) { - $this->clientError(_("You cannot sandbox users on this site.")); + $this->clientError(_('You cannot sandbox users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if (!$this->profile->isSandboxed()) { - $this->clientError(_("User is not sandboxed.")); + $this->clientError(_('User is not sandboxed.')); return false; } diff --git a/actions/unsilence.php b/actions/unsilence.php index 9ff1b828b0..7d282c3661 100644 --- a/actions/unsilence.php +++ b/actions/unsilence.php @@ -62,14 +62,14 @@ class UnsilenceAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if (!$cur->hasRight(Right::SILENCEUSER)) { - $this->clientError(_("You cannot silence users on this site.")); + $this->clientError(_('You cannot silence users on this site.')); return false; } assert(!empty($this->profile)); // checked by parent if (!$this->profile->isSilenced()) { - $this->clientError(_("User is not silenced.")); + $this->clientError(_('User is not silenced.')); return false; } diff --git a/actions/unsubscribe.php b/actions/unsubscribe.php index 6bb10d448b..57ca15d687 100644 --- a/actions/unsubscribe.php +++ b/actions/unsubscribe.php @@ -74,7 +74,7 @@ class UnsubscribeAction extends Action $other_id = $this->arg('unsubscribeto'); if (!$other_id) { - $this->clientError(_('No profile id in request.')); + $this->clientError(_('No profile ID in request.')); return; } diff --git a/actions/userauthorization.php b/actions/userauthorization.php index 7f71c60dbe..e896ff96ca 100644 --- a/actions/userauthorization.php +++ b/actions/userauthorization.php @@ -69,7 +69,7 @@ class UserauthorizationAction extends Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return; } diff --git a/actions/userrss.php b/actions/userrss.php index e03eb93566..cf7d18ca88 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -103,7 +103,7 @@ class UserrssAction extends Rss10Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); - $this->serverError(_('User without matching profile')); + $this->serverError(_('User without matching profile.')); return null; } $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); From 47c1aad5d6d64d7321f7cef1d9b81dfe6f31bc8b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 01:20:25 +0200 Subject: [PATCH 47/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/nl/LC_MESSAGES/statusnet.po | 102 +++++++++++++++++------------ locale/statusnet.pot | 2 +- 2 files changed, 60 insertions(+), 44 deletions(-) diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index ea76c63e4e..8962af19ad 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:08+0000\n" +"PO-Revision-Date: 2010-04-09 23:16:50+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -81,9 +81,8 @@ msgstr "Opslaan" #. 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 -#, fuzzy msgid "No such page." -msgstr "Deze pagina bestaat niet" +msgstr "Deze pagina bestaat niet." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -231,13 +230,12 @@ msgid "This method requires a POST." msgstr "Deze methode vereist een POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "U moet een parameter met de naam \"device\" opgeven met een van de volgende " -"waardes: sms, im, none" +"waardes: sms, im, none." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -443,9 +441,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Te veel aliassen! Het maximale aantal is %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Ongeldige alias: \"%s\"" +msgstr "Ongeldige alias: \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -461,9 +459,8 @@ msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "De groep is niet aangetroffen!" +msgstr "De groep is niet aangetroffen." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -914,9 +911,9 @@ msgid "That confirmation code is not for you!" msgstr "Dit is niet uw bevestigingscode!" #: actions/confirmaddress.php:90 -#, fuzzy, php-format +#, php-format msgid "Unrecognized address type %s." -msgstr "Onbekend adrestype %s" +msgstr "Onbekend adrestype %s." #: actions/confirmaddress.php:94 msgid "That address has already been confirmed." @@ -1072,9 +1069,9 @@ msgid "Invalid logo URL." msgstr "De logo-URL is ongeldig." #: actions/designadminpanel.php:279 -#, fuzzy, php-format +#, php-format msgid "Theme not available: %s." -msgstr "De vormgeving is niet beschikbaar: %s" +msgstr "De vormgeving is niet beschikbaar: %s." #: actions/designadminpanel.php:375 msgid "Change logo" @@ -1598,7 +1595,6 @@ msgstr "" "De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." msgstr "" "Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." @@ -1976,10 +1972,11 @@ msgid "Invites have been disabled." msgstr "Het is niet mogelijk uitnodigingen te verzenden." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." msgstr "" -"U moet aangemeld zijn om anderen te kunnen uitnodigen gebruik te maken van %s" +"U moet aangemeld zijn om anderen te kunnen uitnodigen gebruik te maken van %" +"s." #: actions/invite.php:72 #, php-format @@ -2213,9 +2210,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Het is niet mogelijk %1$s beheerder te maken van de groep %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Geen huidige status" +msgstr "Geen huidige status." #: actions/newapplication.php:52 msgid "New Application" @@ -2382,10 +2378,11 @@ msgid "You are not a user of that application." msgstr "U bent geen gebruiker van die applicatie." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." msgstr "" -"Het was niet mogelijk de toegang te ontzeggen voor de volgende applicatie: " +"Het was niet mogelijk de toegang te ontzeggen voor de volgende applicatie: %" +"s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2399,9 +2396,8 @@ msgstr "" "Ontwikkelaars kunnen de registratiegegevens voor hun applicaties bewerken " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Mededeling heeft geen profiel" +msgstr "Mededeling heeft geen profiel." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2410,15 +2406,15 @@ msgstr "Status van %1$s op %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "inhoudstype %s wordt niet ondersteund" +msgstr "Inhoudstype %s wordt niet ondersteund." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "Alleen URL's voor %s via normale HTTP alstublieft." #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 @@ -2570,24 +2566,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Pad- en serverinstellingen voor de StatusNet-website." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Er kan niet uit de vormgevingmap gelezen worden: %s" +msgstr "Er kan niet uit de vormgevingmap gelezen worden: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Er kan niet in de avatarmap geschreven worden: %s" +msgstr "Er kan niet in de avatarmap geschreven worden: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Er kan niet in de achtergrondmap geschreven worden: %s" +msgstr "Er kan niet in de achtergrondmap geschreven worden: %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Er kan niet uit de talenmap gelezen worden: %s" +msgstr "Er kan niet uit de talenmap gelezen worden: %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2728,9 +2724,9 @@ msgid "People search" msgstr "Gebruikers zoeken" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "Geen geldig gebruikerslabel: %s" +msgstr "Geen geldig gebruikerslabel: %s." #: actions/peopletag.php:142 #, php-format @@ -2738,9 +2734,8 @@ 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:95 -#, fuzzy msgid "Invalid notice content." -msgstr "Ongeldige mededelinginhoud" +msgstr "Ongeldige mededelinginhoud." #: actions/postnotice.php:101 #, php-format @@ -2889,9 +2884,9 @@ msgid "Settings saved." msgstr "De instellingen zijn opgeslagen." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Meer dan de paginalimiet (%s)" +msgstr "Meer dan de paginalimiet (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3816,7 +3811,6 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "De minimale tekstlimiet is 0 tekens (ongelimiteerd)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." msgstr "De duplicaatlimiet moet één of meer seconden zijn." @@ -3913,9 +3907,8 @@ msgid "Unable to save site notice." msgstr "Het was niet mogelijk om de websitebrede mededeling op te slaan." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." -msgstr "De maximale lengte voor de websitebrede aankondiging is 255 tekens" +msgstr "De maximale lengte voor de websitebrede aankondiging is 255 tekens." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -4292,7 +4285,6 @@ msgid "User is not silenced." msgstr "Deze gebruiker is niet gemuilkorfd." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." msgstr "Het profiel-ID was niet aanwezig in het verzoek." @@ -4992,6 +4984,7 @@ msgstr "" #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" +"Alle inhoud en gegevens van %1$s zijn beschikbaar onder de licentie %2$s." #: lib/action.php:1156 msgid "Pagination" @@ -6080,6 +6073,29 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%1$s (@%9$s) heeft u zojuist een mededeling gezonden (een '@-antwoord') op %2" +"$s.\n" +"\n" +"De mededeling is hier te vinden:\n" +"\n" +"%3$s\n" +"\n" +"De inhoud is:\n" +"\n" +"%4$s\n" +"\n" +"%5$sHier kunt u antwoorden:\n" +"\n" +"%6$s\n" +"\n" +"De lijst met alle @-antwoorden aan u:\n" +"\n" +"%7$s\n" +"\n" +"Groet,\n" +"%2$s\n" +"\n" +"Ps. U kunt de e-mailmeldingen hier uitschakelen: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 5ced0617fb..20ea4c1391 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" +"POT-Creation-Date: 2010-04-09 23:15+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From c15549ff5a787a8014e54a50aa0fdfc0055ffcde Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 01:47:27 +0200 Subject: [PATCH 48/80] Fix double space in message --- actions/register.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/register.php b/actions/register.php index da8d0a0bbc..d1bc381fbc 100644 --- a/actions/register.php +++ b/actions/register.php @@ -341,7 +341,7 @@ class RegisterAction extends Action } else { $instr = common_markup_to_html(_('With this form you can create '. - ' a new account. ' . + 'a new account. ' . 'You can then post notices and '. 'link up to friends and colleagues. ')); From 518832da28456259bf9fc0030d26e1a090e30f67 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 01:48:16 +0200 Subject: [PATCH 49/80] Document messages for which clarification was requested. --- actions/allrss.php | 2 ++ actions/apigrouplistall.php | 1 + actions/apitimelinefriends.php | 1 + actions/apitimelinehome.php | 1 + actions/confirmaddress.php | 2 ++ actions/designadminpanel.php | 3 +++ actions/grouprss.php | 2 ++ actions/usergroups.php | 2 ++ actions/userrss.php | 2 ++ lib/atomgroupnoticefeed.php | 1 + lib/atomusernoticefeed.php | 1 + 11 files changed, 18 insertions(+) diff --git a/actions/allrss.php b/actions/allrss.php index 01e737ad7b..7df0b1ef7c 100644 --- a/actions/allrss.php +++ b/actions/allrss.php @@ -112,10 +112,12 @@ class AllrssAction extends Rss10Action $c = array('url' => common_local_url('allrss', array('nickname' => $user->nickname)), + // TRANS: Message is used as link title. %s is a user nickname. 'title' => sprintf(_('%s and friends'), $user->nickname), 'link' => common_local_url('all', array('nickname' => $user->nickname)), + // TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. 'description' => sprintf(_('Updates from %1$s and friends on %2$s!'), $user->nickname, common_config('site', 'name'))); return $c; diff --git a/actions/apigrouplistall.php b/actions/apigrouplistall.php index f7677970f8..bd05fa3ea8 100644 --- a/actions/apigrouplistall.php +++ b/actions/apigrouplistall.php @@ -87,6 +87,7 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction parent::handle($args); $sitename = common_config('site', 'name'); + // TRANS: Message is used as a title. %s is a site name. $title = sprintf(_("%s groups"), $sitename); $taguribase = TagURI::base(); $id = "tag:$taguribase:Groups"; diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index ac350ab1b7..7f80f252e7 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -116,6 +116,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $id = "tag:$taguribase:FriendsTimeline:" . $this->user->id; $subtitle = sprintf( + // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. _('Updates from %1$s and friends on %2$s!'), $this->user->nickname, $sitename diff --git a/actions/apitimelinehome.php b/actions/apitimelinehome.php index 1618c9923c..43a13dcda9 100644 --- a/actions/apitimelinehome.php +++ b/actions/apitimelinehome.php @@ -117,6 +117,7 @@ class ApiTimelineHomeAction extends ApiBareAuthAction $id = "tag:$taguribase:HomeTimeline:" . $this->user->id; $subtitle = sprintf( + // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. _('Updates from %1$s and friends on %2$s!'), $this->user->nickname, $sitename ); diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php index dc17499f55..8bf8c8c4d4 100644 --- a/actions/confirmaddress.php +++ b/actions/confirmaddress.php @@ -87,10 +87,12 @@ class ConfirmaddressAction extends Action } $type = $confirm->address_type; if (!in_array($type, array('email', 'jabber', 'sms'))) { + // TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. $this->serverError(sprintf(_('Unrecognized address type %s.'), $type)); return; } if ($cur->$type == $confirm->address) { + // TRANS: Client error for an already confirmed email/jabbel/sms address. $this->clientError(_('That address has already been confirmed.')); return; } diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index 41d917e3ca..8c08581b5d 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -59,6 +59,7 @@ class DesignadminpanelAction extends AdminPanelAction function title() { + // TRANS: Message used as title for design settings for the site. return _('Design'); } @@ -454,6 +455,7 @@ class DesignAdminPanelForm extends AdminForm $this->out->element('label', array('for' => 'design_background-image_on', 'class' => 'radio'), + // TRANS: Used as radio button label to add a background image. _('On')); $attrs = array('name' => 'design_background-image_onoff', @@ -470,6 +472,7 @@ class DesignAdminPanelForm extends AdminForm $this->out->element('label', array('for' => 'design_background-image_off', 'class' => 'radio'), + // TRANS: Used as radio button label to not add a background image. _('Off')); $this->out->element('p', 'form_guide', _('Turn background image on or off.')); $this->unli(); diff --git a/actions/grouprss.php b/actions/grouprss.php index 490f6f945c..98fdea38de 100644 --- a/actions/grouprss.php +++ b/actions/grouprss.php @@ -135,8 +135,10 @@ class groupRssAction extends Rss10Action $c = array('url' => common_local_url('grouprss', array('nickname' => $group->nickname)), + // TRANS: Message is used as link title. %s is a user nickname. 'title' => sprintf(_('%s timeline'), $group->nickname), 'link' => common_local_url('showgroup', array('nickname' => $group->nickname)), + // TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. 'description' => sprintf(_('Updates from members of %1$s on %2$s!'), $group->nickname, common_config('site', 'name'))); return $c; diff --git a/actions/usergroups.php b/actions/usergroups.php index 29bda0a765..6606e76cdb 100644 --- a/actions/usergroups.php +++ b/actions/usergroups.php @@ -59,8 +59,10 @@ class UsergroupsAction extends OwnerDesignAction function title() { if ($this->page == 1) { + // TRANS: Message is used as a page title. %s is a nick name. return sprintf(_('%s groups'), $this->user->nickname); } else { + // TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. return sprintf(_('%1$s groups, page %2$d'), $this->user->nickname, $this->page); diff --git a/actions/userrss.php b/actions/userrss.php index c6103b2f8a..b7078fcaf8 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -90,8 +90,10 @@ class UserrssAction extends Rss10Action $c = array('url' => common_local_url('userrss', array('nickname' => $user->nickname)), + // TRANS: Message is used as link title. %s is a user nickname. 'title' => sprintf(_('%s timeline'), $user->nickname), 'link' => $profile->profileurl, + // TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. 'description' => sprintf(_('Updates from %1$s on %2$s!'), $user->nickname, common_config('site', 'name'))); return $c; diff --git a/lib/atomgroupnoticefeed.php b/lib/atomgroupnoticefeed.php index 08c1c707c5..08c28a48be 100644 --- a/lib/atomgroupnoticefeed.php +++ b/lib/atomgroupnoticefeed.php @@ -63,6 +63,7 @@ class AtomGroupNoticeFeed extends AtomNoticeFeed $sitename = common_config('site', 'name'); $subtitle = sprintf( + // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. _('Updates from %1$s on %2$s!'), $group->nickname, $sitename diff --git a/lib/atomusernoticefeed.php b/lib/atomusernoticefeed.php index 428cc2de2f..a534cbee6b 100644 --- a/lib/atomusernoticefeed.php +++ b/lib/atomusernoticefeed.php @@ -69,6 +69,7 @@ class AtomUserNoticeFeed extends AtomNoticeFeed $sitename = common_config('site', 'name'); $subtitle = sprintf( + // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. _('Updates from %1$s on %2$s!'), $user->nickname, $sitename ); From 86a3016a6f85b87fd26c8e61f3cb89c453404042 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 01:49:25 +0200 Subject: [PATCH 50/80] Document messages for which clarification was requested. Because N/S/E/W were on the same lines, and the "// TRANS:" comment must be directly above the line in which the message is located to work, I added the messages to a variable first. --- lib/noticelist.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/noticelist.php b/lib/noticelist.php index 4f997a3286..b785504876 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -426,10 +426,18 @@ class NoticeListItem extends Widget if (empty($name)) { $latdms = $this->decimalDegreesToDMS(abs($lat)); $londms = $this->decimalDegreesToDMS(abs($lon)); + // TRANS: Used in coordinates as abbreviation of north + $north = _('N') + // TRANS: Used in coordinates as abbreviation of south + $south = _('S') + // TRANS: Used in coordinates as abbreviation of east + $east = _('E') + // TRANS: Used in coordinates as abbreviation of west + $west = _('W') $name = sprintf( _('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'), - $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0?_('N'):_('S')), - $londms['deg'],$londms['min'], $londms['sec'],($lon>0?_('E'):_('W'))); + $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south)), + $londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west)); } $url = $location->getUrl(); From 5d96cf2eec15dc08af5c539be53b427c50ef89a9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 10 Apr 2010 11:36:23 -0400 Subject: [PATCH 51/80] catch UserNoProfileException and continue --- lib/deluserqueuehandler.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/deluserqueuehandler.php b/lib/deluserqueuehandler.php index 4a1233a5ef..7103039382 100644 --- a/lib/deluserqueuehandler.php +++ b/lib/deluserqueuehandler.php @@ -49,9 +49,13 @@ class DelUserQueueHandler extends QueueHandler return true; } - if (!$user->hasRole(Profile_role::DELETED)) { - common_log(LOG_INFO, "User {$user->nickname} is not pending deletion; aborting."); - return true; + try { + if (!$user->hasRole(Profile_role::DELETED)) { + common_log(LOG_INFO, "User {$user->nickname} is not pending deletion; aborting."); + return true; + } + } catch (UserNoProfileException $unp) { + common_log(LOG_INFO, "Deleting user {$user->nickname} with no profile... probably a good idea!"); } $notice = $this->getNextBatch($user); From ddc116cffe40e7060455a80e360119d0048fa6e5 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 21:12:14 +0200 Subject: [PATCH 52/80] Add translator documentation for a few files * added a few XXX (that's StatusNet for FIXME, right?) ** proposing de-duplication of a message appearing ~50 times ** marking bad pagination implementation * moved the TRANS: comments in action.php down to exactly before the line in which the message appears. Otherwise gettext does not put them in the pot file * fixed a XXX in action.php removing double spaces --- lib/accountsettingsaction.php | 30 +++++++++++++++---- lib/action.php | 54 ++++++++++++++++++++++++++++------- lib/htmloutputter.php | 1 + 3 files changed, 68 insertions(+), 17 deletions(-) diff --git a/lib/accountsettingsaction.php b/lib/accountsettingsaction.php index c79a1f5d77..57740f8b85 100644 --- a/lib/accountsettingsaction.php +++ b/lib/accountsettingsaction.php @@ -105,27 +105,45 @@ class AccountSettingsNav extends Widget $user = common_current_user(); if(Event::handle('StartAccountSettingsProfileMenuItem', array($this, &$menu))){ - $this->showMenuItem('profilesettings',_('Profile'),_('Change your profile settings')); + // TRANS: Link title attribute in user account settings menu. + $title = _('Change your profile settings'); + // TRANS: Link description in user account settings menu. + $this->showMenuItem('profilesettings',_('Profile'),$title); Event::handle('EndAccountSettingsProfileMenuItem', array($this, &$menu)); } if(Event::handle('StartAccountSettingsAvatarMenuItem', array($this, &$menu))){ - $this->showMenuItem('avatarsettings',_('Avatar'),_('Upload an avatar')); + // TRANS: Link title attribute in user account settings menu. + $title = _('Upload an avatar'); + // TRANS: Link description in user account settings menu. + $this->showMenuItem('avatarsettings',_('Avatar'),$title); Event::handle('EndAccountSettingsAvatarMenuItem', array($this, &$menu)); } if(Event::handle('StartAccountSettingsPasswordMenuItem', array($this, &$menu))){ - $this->showMenuItem('passwordsettings',_('Password'),_('Change your password')); + // TRANS: Link title attribute in user account settings menu. + $title = _('Change your password'); + // TRANS: Link description in user account settings menu. + $this->showMenuItem('passwordsettings',_('Password'),$title); Event::handle('EndAccountSettingsPasswordMenuItem', array($this, &$menu)); } if(Event::handle('StartAccountSettingsEmailMenuItem', array($this, &$menu))){ - $this->showMenuItem('emailsettings',_('Email'),_('Change email handling')); + // TRANS: Link title attribute in user account settings menu. + $title = _('Change email handling'); + // TRANS: Link description in user account settings menu. + $this->showMenuItem('emailsettings',_('Email'),$title); Event::handle('EndAccountSettingsEmailMenuItem', array($this, &$menu)); } if(Event::handle('StartAccountSettingsDesignMenuItem', array($this, &$menu))){ - $this->showMenuItem('userdesignsettings',_('Design'),_('Design your profile')); + // TRANS: Link title attribute in user account settings menu. + $title = _('Design your profile'); + // TRANS: Link description in user account settings menu. + $this->showMenuItem('userdesignsettings',_('Design'),$title); Event::handle('EndAccountSettingsDesignMenuItem', array($this, &$menu)); } if(Event::handle('StartAccountSettingsOtherMenuItem', array($this, &$menu))){ - $this->showMenuItem('othersettings',_('Other'),_('Other options')); + // TRANS: Link title attribute in user account settings menu. + $title = _('Other options'); + // TRANS: Link description in user account settings menu. + $this->showMenuItem('othersettings',_('Other'),$title); Event::handle('EndAccountSettingsOtherMenuItem', array($this, &$menu)); } diff --git a/lib/action.php b/lib/action.php index 0fc3a0dc43..4296ae7dea 100644 --- a/lib/action.php +++ b/lib/action.php @@ -141,6 +141,7 @@ class Action extends HTMLOutputter // lawsuit function showTitle() { $this->element('title', null, + // TRANS: Page title. %1$s is the title, %2$s is the site name. sprintf(_("%1\$s - %2\$s"), $this->title(), common_config('site', 'name'))); @@ -156,6 +157,7 @@ class Action extends HTMLOutputter // lawsuit function title() { + // TRANS: Page title for a page without a title set. return _("Untitled page"); } @@ -420,6 +422,7 @@ class Action extends HTMLOutputter // lawsuit { $user = common_current_user(); $this->elementStart('dl', array('id' => 'site_nav_global_primary')); + // TRANS: DT element for primary navigation menu. String is hidden in default CSS. $this->element('dt', null, _('Primary site navigation')); $this->elementStart('dd'); $this->elementStart('ul', array('class' => 'nav')); @@ -427,31 +430,31 @@ class Action extends HTMLOutputter // lawsuit 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)), + // TRANS: Main menu option when logged in for access to personal profile and friends timeline _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'), + // TRANS: Main menu option when logged in for access to user settings _('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'), + // TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services _('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'), + // TRANS: Main menu option when logged in and site admin for access to site configuration _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'), + // TRANS: Main menu option when logged in and invitations are allowed for inviting new users _m('MENU', 'Invite'), sprintf($tooltip, common_config('site', 'name')), @@ -459,16 +462,16 @@ class Action extends HTMLOutputter // lawsuit } // 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'), + // TRANS: Main menu option when logged in to log out the current user _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'), + // TRANS: Main menu option when not logged in to register a new account _m('MENU', 'Register'), $tooltip, false, 'nav_register'); } // TRANS: Tooltip for main menu option "Login" @@ -575,6 +578,7 @@ class Action extends HTMLOutputter // lawsuit function showLocalNavBlock() { $this->elementStart('dl', array('id' => 'site_nav_local_views')); + // TRANS: DT element for local views block. String is hidden in default CSS. $this->element('dt', null, _('Local views')); $this->elementStart('dd'); $this->showLocalNav(); @@ -641,6 +645,7 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('dl', array('id' => 'page_notice', 'class' => 'system_notice')); + // TRANS: DT element for page notice. String is hidden in default CSS. $this->element('dt', null, _('Page notice')); $this->elementStart('dd'); if (Event::handle('StartShowPageNotice', array($this))) { @@ -743,28 +748,37 @@ class Action extends HTMLOutputter // lawsuit function showSecondaryNav() { $this->elementStart('dl', array('id' => 'site_nav_global_secondary')); + // TRANS: DT element for secondary navigation menu. String is hidden in default CSS. $this->element('dt', null, _('Secondary site navigation')); $this->elementStart('dd', null); $this->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartSecondaryNav', array($this))) { $this->menuItem(common_local_url('doc', array('title' => 'help')), + // TRANS: Secondary navigation menu option leading to help on StatusNet. _('Help')); $this->menuItem(common_local_url('doc', array('title' => 'about')), + // TRANS: Secondary navigation menu option leading to text about StatusNet site. _('About')); $this->menuItem(common_local_url('doc', array('title' => 'faq')), + // TRANS: Secondary navigation menu option leading to Frequently Asked Questions. _('FAQ')); $bb = common_config('site', 'broughtby'); if (!empty($bb)) { $this->menuItem(common_local_url('doc', array('title' => 'tos')), + // TRANS: Secondary navigation menu option leading to Terms of Service. _('TOS')); } $this->menuItem(common_local_url('doc', array('title' => 'privacy')), + // TRANS: Secondary navigation menu option leading to privacy policy. _('Privacy')); $this->menuItem(common_local_url('doc', array('title' => 'source')), + // TRANS: Secondary navigation menu option. _('Source')); $this->menuItem(common_local_url('version'), + // TRANS: Secondary navigation menu option leading to version information on the StatusNet site. _('Version')); $this->menuItem(common_local_url('doc', array('title' => 'contact')), + // TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. _('Contact')); $this->menuItem(common_local_url('doc', array('title' => 'badge')), _('Badge')); @@ -795,16 +809,18 @@ class Action extends HTMLOutputter // lawsuit */ function showStatusNetLicense() { + // TRANS: DT element for StatusNet software license. $this->element('dt', array('id' => 'site_statusnet_license'), _('StatusNet software license')); $this->elementStart('dd', null); - // @fixme drop the final spaces in the messages when at good spot - // to let translations get updated. if (common_config('site', 'broughtby')) { - $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). '); + // TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. + $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%).'); } else { - $instr = _('**%%site.name%%** is a microblogging service. '); + // TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. + $instr = _('**%%site.name%%** is a microblogging service.'); } $instr .= ' '; + // TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. $instr .= sprintf(_('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).'), STATUSNET_VERSION); $output = common_markup_to_html($instr); $this->raw($output); @@ -820,19 +836,25 @@ class Action extends HTMLOutputter // lawsuit function showContentLicense() { if (Event::handle('StartShowContentLicense', array($this))) { + // TRANS: DT element for StatusNet site content license. $this->element('dt', array('id' => 'site_content_license'), _('Site content license')); $this->elementStart('dd', array('id' => 'site_content_license_cc')); switch (common_config('license', 'type')) { case 'private': + // TRANS: Content license displayed when license is set to 'private'. + // TRANS: %1$s is the site name. $this->element('p', null, sprintf(_('Content and data of %1$s are private and confidential.'), common_config('site', 'name'))); // fall through case 'allrightsreserved': if (common_config('license', 'owner')) { + // TRANS: Content license displayed when license is set to 'allrightsreserved'. + // TRANS: %1$s is the copyright owner. $this->element('p', null, sprintf(_('Content and data copyright by %1$s. All rights reserved.'), common_config('license', 'owner'))); } else { + // TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. $this->element('p', null, _('Content and data copyright by contributors. All rights reserved.')); } break; @@ -1148,11 +1170,15 @@ class Action extends HTMLOutputter // lawsuit * * @return nothing */ + // XXX: The messages in this pagination method only tailor to navigating + // notices. In other lists, "Previous"/"Next" type navigation is + // desirable, but not available. function pagination($have_before, $have_after, $page, $action, $args=null) { // Does a little before-after block for next/prev page if ($have_before || $have_after) { $this->elementStart('dl', 'pagination'); + // TRANS: DT element for pagination (previous/next, etc.). $this->element('dt', null, _('Pagination')); $this->elementStart('dd', null); $this->elementStart('ul', array('class' => 'nav')); @@ -1162,6 +1188,8 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('li', array('class' => 'nav_prev')); $this->element('a', array('href' => common_local_url($action, $args, $pargs), 'rel' => 'prev'), + // TRANS: Pagination message to go to a page displaying information more in the + // TRANS: present than the currently displayed information. _('After')); $this->elementEnd('li'); } @@ -1170,6 +1198,8 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('li', array('class' => 'nav_next')); $this->element('a', array('href' => common_local_url($action, $args, $pargs), 'rel' => 'next'), + // TRANS: Pagination message to go to a page displaying information more in the + // TRANS: past than the currently displayed information. _('Before')); $this->elementEnd('li'); } @@ -1213,6 +1243,8 @@ class Action extends HTMLOutputter // lawsuit * @return void */ + // XXX: Finding this type of check with the same message about 50 times. + // Possible to refactor? function checkSessionToken() { // CSRF protection diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 7786b5941e..5dc2b38dab 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -100,6 +100,7 @@ class HTMLOutputter extends XMLOutputter $type = common_negotiate_type($cp, $sp); if (!$type) { + // TRANS: Client exception 406 throw new ClientException(_('This page is not available in a '. 'media type you accept'), 406); } From b45f08557e5dc0275ec11d90b2581e8b5d91b27b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 21:19:45 +0200 Subject: [PATCH 53/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/af/LC_MESSAGES/statusnet.po | 368 +++++++++++-------- locale/ar/LC_MESSAGES/statusnet.po | 370 +++++++++++-------- locale/arz/LC_MESSAGES/statusnet.po | 370 +++++++++++-------- locale/bg/LC_MESSAGES/statusnet.po | 372 +++++++++++-------- locale/br/LC_MESSAGES/statusnet.po | 384 ++++++++++++-------- locale/ca/LC_MESSAGES/statusnet.po | 450 ++++++++++++----------- locale/cs/LC_MESSAGES/statusnet.po | 372 +++++++++++-------- locale/de/LC_MESSAGES/statusnet.po | 373 +++++++++++-------- locale/el/LC_MESSAGES/statusnet.po | 368 +++++++++++-------- locale/en_GB/LC_MESSAGES/statusnet.po | 372 +++++++++++-------- locale/es/LC_MESSAGES/statusnet.po | 373 +++++++++++-------- locale/fa/LC_MESSAGES/statusnet.po | 368 +++++++++++-------- locale/fi/LC_MESSAGES/statusnet.po | 356 ++++++++++-------- locale/fr/LC_MESSAGES/statusnet.po | 494 ++++++++++++++----------- locale/ga/LC_MESSAGES/statusnet.po | 356 ++++++++++-------- locale/gl/LC_MESSAGES/statusnet.po | 368 +++++++++++-------- locale/he/LC_MESSAGES/statusnet.po | 356 ++++++++++-------- locale/hsb/LC_MESSAGES/statusnet.po | 368 +++++++++++-------- locale/ia/LC_MESSAGES/statusnet.po | 373 +++++++++++-------- locale/is/LC_MESSAGES/statusnet.po | 356 ++++++++++-------- locale/it/LC_MESSAGES/statusnet.po | 373 +++++++++++-------- locale/ja/LC_MESSAGES/statusnet.po | 358 ++++++++++-------- locale/ko/LC_MESSAGES/statusnet.po | 356 ++++++++++-------- locale/mk/LC_MESSAGES/statusnet.po | 493 ++++++++++++++----------- locale/nb/LC_MESSAGES/statusnet.po | 372 +++++++++++-------- locale/nl/LC_MESSAGES/statusnet.po | 373 +++++++++++-------- locale/nn/LC_MESSAGES/statusnet.po | 356 ++++++++++-------- locale/pl/LC_MESSAGES/statusnet.po | 449 +++++++++++++---------- locale/pt/LC_MESSAGES/statusnet.po | 373 +++++++++++-------- locale/pt_BR/LC_MESSAGES/statusnet.po | 373 +++++++++++-------- locale/ru/LC_MESSAGES/statusnet.po | 496 ++++++++++++++----------- locale/statusnet.pot | 364 +++++++++++-------- locale/sv/LC_MESSAGES/statusnet.po | 502 +++++++++++++++----------- locale/te/LC_MESSAGES/statusnet.po | 444 +++++++++++++---------- locale/tr/LC_MESSAGES/statusnet.po | 372 +++++++++++-------- locale/uk/LC_MESSAGES/statusnet.po | 496 ++++++++++++++----------- locale/vi/LC_MESSAGES/statusnet.po | 356 ++++++++++-------- locale/zh_CN/LC_MESSAGES/statusnet.po | 356 ++++++++++-------- locale/zh_TW/LC_MESSAGES/statusnet.po | 372 +++++++++++-------- 39 files changed, 8951 insertions(+), 6250 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 786d7b8e32..1fd2438648 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 22:59:38+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:12:54+0000\n" "Language-Team: Afrikaans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: out-statusnet\n" @@ -101,7 +101,7 @@ msgstr "Hierdie bladsy bestaan nie" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -115,7 +115,8 @@ msgstr "%1$s en vriende, bladsy %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 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -176,8 +177,10 @@ msgstr "" msgid "You and friends" msgstr "U en vriende" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Opdaterings van %1$s en vriende op %2$s." @@ -193,13 +196,13 @@ msgstr "Opdaterings van %1$s en vriende op %2$s." #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -236,7 +239,7 @@ msgstr "Kon nie die gebruiker opdateer nie." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Hierdie gebruiker het nie 'n profiel nie." @@ -248,7 +251,7 @@ msgstr "Kon nie die profiel stoor nie." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -484,12 +487,14 @@ msgstr "%s se groepe" msgid "%1$s groups %2$s is a member of." msgstr "Groepe op %1$s waar %2$s lid van is." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s groepe" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "groepe op %s" @@ -545,7 +550,7 @@ 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/designadminpanel.php:104 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 @@ -569,7 +574,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Gebruiker" @@ -581,8 +587,9 @@ msgstr "Gebruiker" msgid "Nickname" msgstr "Bynaam" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Wagwoord" @@ -715,8 +722,9 @@ msgstr "Geen grootte nie." msgid "Invalid size." msgstr "Ongeldige grootte." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -727,7 +735,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "" @@ -747,7 +755,7 @@ msgid "Preview" msgstr "Voorskou" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Skrap" @@ -880,16 +888,18 @@ msgstr "" msgid "That confirmation code is not for you!" msgstr "" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, php-format msgid "Unrecognized address type %s." msgstr "" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -897,16 +907,16 @@ msgstr "" msgid "Couldn't update user." msgstr "Kon nie gebruiker opdateer nie." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Bevestig adres" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -935,7 +945,7 @@ msgstr "U is nie die eienaar van hierdie applikasie nie." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -991,7 +1001,7 @@ msgstr "Is u seker u wil hierdie kennisgewing verwyder?" msgid "Do not delete this notice" msgstr "Moenie hierdie kennisgewing verwyder nie" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Verwyder hierdie kennisgewing" @@ -1017,109 +1027,113 @@ msgstr "" msgid "Delete this user" msgstr "Verwyder die gebruiker" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Ontwerp" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "Die logo-URL is ongeldig." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Tema is nie beskikbaar nie: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Verander logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Webwerf-logo" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Verander tema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Werf se tema" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Tema vir die werf." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Verander die agtergrond-prent" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Agtergrond" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, 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 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Aan" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Af" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Verander kleure" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Inhoud" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Kantstrook" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Skakels" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Gebruik verstekwaardes" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Stel terug na standaard" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1131,7 +1145,7 @@ msgstr "Stel terug na standaard" msgid "Save" msgstr "Stoor" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Stoor ontwerp" @@ -1702,13 +1716,15 @@ msgstr "Maak Admin" msgid "Make this user an admin" msgstr "Maak hierdie gebruiker 'n administrateur" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s tydlyn" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1733,7 +1749,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Skep 'n nuwe groep" @@ -2973,7 +2989,7 @@ msgstr "Ongeldige gebruikersnaam of wagwoord." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -2989,8 +3005,9 @@ msgstr "" msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-pos" @@ -3103,7 +3120,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Herhalend" @@ -4036,7 +4053,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" @@ -4188,27 +4206,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Geniet u worsbroodjie!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s groepe, bladsy %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Soek vir meer groepe" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Opdaterings van %1$s op %2$s." @@ -4256,7 +4277,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Weergawe" @@ -4404,219 +4426,249 @@ msgstr "" msgid "Could not save local group info." msgstr "" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Verander u profiel gegewens" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Verander u wagwoord" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Ontwerp u profiel" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Ander" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Ander opsies" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Ander" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Persoonlik" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Konnekteer" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Beheer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Uitnodig" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Teken uit" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skep 'n gebruiker" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registreer" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Meld by die webwerf aan" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Teken in" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help my!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Soek na mense of teks" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Soek" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Help" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Aangaande" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Gewilde vrae" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "Gebruiksvoorwaardes" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privaatheid" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Bron" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Kontak" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4624,39 +4676,50 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Na" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Voor" @@ -5323,7 +5386,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5607,7 +5671,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "van" @@ -5732,48 +5796,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "O" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "W" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "O" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "W" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "op" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "in konteks" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Herhaal deur" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Antwoord" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 35e7196ce7..8087c02d0e 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-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 22:59:41+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:12:57+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -103,7 +103,7 @@ msgstr "لا صفحة كهذه" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -117,7 +117,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -176,8 +177,10 @@ msgstr "" msgid "You and friends" msgstr "أنت والأصدقاء" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -193,13 +196,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -236,7 +239,7 @@ msgstr "تعذّر تحديث المستخدم." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "ليس للمستخدم ملف شخصي." @@ -248,7 +251,7 @@ msgstr "لم يمكن حفظ الملف." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -477,12 +480,14 @@ msgstr "مجموعات %s" msgid "%1$s groups %2$s is a member of." msgstr "المجموعات التي %s عضو فيها" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "مجموعات %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "مجموعات %s" @@ -541,7 +546,7 @@ 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/designadminpanel.php:104 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 @@ -565,7 +570,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "الحساب" @@ -577,8 +583,9 @@ msgstr "الحساب" msgid "Nickname" msgstr "الاسم المستعار" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "كلمة السر" @@ -711,8 +718,9 @@ msgstr "لا حجم." msgid "Invalid size." msgstr "حجم غير صالح." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "أفتار" @@ -723,7 +731,7 @@ msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للم #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "المستخدم بدون ملف مطابق." @@ -743,7 +751,7 @@ msgid "Preview" msgstr "معاينة" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "احذف" @@ -876,16 +884,18 @@ msgstr "لم يوجد رمز التأكيد." msgid "That confirmation code is not for you!" msgstr "رمز التأكيد ليس لك!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, php-format msgid "Unrecognized address type %s." msgstr "" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -893,16 +903,16 @@ msgstr "" msgid "Couldn't update user." msgstr "تعذّر تحديث المستخدم." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكتروني." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "أكد العنوان" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -931,7 +941,7 @@ msgstr "أنت لست مالك هذا التطبيق." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -987,7 +997,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1013,109 +1023,113 @@ msgstr "" msgid "Delete this user" msgstr "احذف هذا المستخدم" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "التصميم" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "مسار شعار غير صالح." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "السمة غير متوفرة: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "غيّر الشعار" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "شعار الموقع" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "غيّر السمة" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "سمة الموقع" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "سمة الموقع." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "تغيير صورة الخلفية" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "الخلفية" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "بإمكانك رفع صورة خلفية للموقع. أقصى حجم للملف هو %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "مكّن" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "عطّل" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "مكّن صورة الخلفية أو عطّلها." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "تغيير الألوان" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "المحتوى" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "الشريط الجانبي" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "النص" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "وصلات" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "استخدم المبدئيات" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "استعد التصميمات المبدئية" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "ارجع إلى المبدئي" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1127,7 +1141,7 @@ msgstr "ارجع إلى المبدئي" msgid "Save" msgstr "أرسل" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "احفظ التصميم" @@ -1701,13 +1715,15 @@ msgstr "" msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1736,7 +1752,7 @@ msgstr "" "عبر الصياغة \"!اسم_المجموعة\". ألا ترى مجموعة تعجبك؟ جرّب [البحث عن مجموعة](%%" "%%action.groupsearch%%%%) أو [ابدأ مجموعتك!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "أنشئ مجموعة جديدة" @@ -2991,7 +3007,7 @@ msgstr "اسم مستخدم أو كلمة سر غير صالحة." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3007,8 +3023,9 @@ msgstr "6 حروف أو أكثر. مطلوب." msgid "Same as password above. Required." msgstr "نفس كلمة السر أعلاه. مطلوب." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "البريد الإلكتروني" @@ -3121,7 +3138,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية." msgid "You already repeated that notice." msgstr "أنت كررت هذه الملاحظة بالفعل." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "مكرر" @@ -4081,7 +4098,8 @@ msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" @@ -4233,27 +4251,30 @@ msgstr "خصّص أسلوب عرض ملفك بصورة خلفية ومخطط أ msgid "Enjoy your hotdog!" msgstr "استمتع بالنقانق!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "مجموعات %1$s، الصفحة %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "ابحث عن المزيد من المجموعات" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s ليس عضوًا في أي مجموعة." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "جرّب [البحث عن مجموعات](%%action.groupsearch%%) والانضمام إليها." -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4303,7 +4324,8 @@ msgstr "" msgid "Plugins" msgstr "الملحقات" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "النسخة" @@ -4455,222 +4477,252 @@ msgstr "تعذّر ضبط عضوية المجموعة." msgid "Could not save local group info." msgstr "تعذّر حفظ الاشتراك." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "ارفع أفتارًا" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "غير كلمة سرّك" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "صمّم ملفك الشخصي" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "أخرى" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "خيارات أخرى" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "أخرى" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "صفحة غير مُعنونة" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصي ومسار الأصدقاء الزمني" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "الصفحة الشخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير بريدك الإلكتروني وكلمة سرّك وأفتارك وملفك الشخصي" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "اتصالات" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "لُج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نصوص" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "المشاهدات المحلية" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "إشعار الصفحة" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "مساعدة" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "عن" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "الأسئلة المكررة" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "الشروط" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "المصدر" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "اتصل" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "الجسر" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "رخصة برنامج StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4681,39 +4733,50 @@ msgstr "" "المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "رخصة محتوى الموقع" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "بعد" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "قبل" @@ -5434,7 +5497,8 @@ msgstr "المجموعات الأكثر مرسلات" msgid "Tags in %s group's notices" msgstr "وسوم في إشعارات مجموعة %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5740,7 +5804,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "من" @@ -5865,48 +5929,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "ش" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "ج" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "ر" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "غ" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "ش" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "ج" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "ر" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "غ" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "في" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "في السياق" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "مكرر بواسطة" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "الإشعار مكرر" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index f40602019f..770b25395a 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-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 22:59:44+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:00+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 (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -109,7 +109,7 @@ msgstr "لا صفحه كهذه" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -123,7 +123,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -182,8 +183,10 @@ msgstr "" msgid "You and friends" msgstr "أنت والأصدقاء" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -199,13 +202,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -242,7 +245,7 @@ msgstr "تعذّر تحديث المستخدم." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "ليس للمستخدم ملف شخصى." @@ -254,7 +257,7 @@ msgstr "لم يمكن حفظ الملف." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -483,12 +486,14 @@ msgstr "مجموعات %s" msgid "%1$s groups %2$s is a member of." msgstr "المجموعات التى %s عضو فيها" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "مجموعات %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "مجموعات %s" @@ -547,7 +552,7 @@ 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/designadminpanel.php:104 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 @@ -571,7 +576,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "الحساب" @@ -583,8 +589,9 @@ msgstr "الحساب" msgid "Nickname" msgstr "الاسم المستعار" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "كلمه السر" @@ -717,8 +724,9 @@ msgstr "لا حجم." msgid "Invalid size." msgstr "حجم غير صالح." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "أفتار" @@ -729,7 +737,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "يوزر من-غير پروفايل زيّه." @@ -749,7 +757,7 @@ msgid "Preview" msgstr "عاين" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "احذف" @@ -883,16 +891,18 @@ msgstr "لم يوجد رمز التأكيد." msgid "That confirmation code is not for you!" msgstr "رمز التأكيد ليس لك!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, php-format msgid "Unrecognized address type %s." msgstr "" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -900,16 +910,16 @@ msgstr "" msgid "Couldn't update user." msgstr "تعذّر تحديث المستخدم." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكترونى." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "اكد العنوان" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -940,7 +950,7 @@ msgstr "انت مش بتملك الapplication دى." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -999,7 +1009,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1025,109 +1035,113 @@ msgstr "" msgid "Delete this user" msgstr "احذف هذا المستخدم" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "التصميم" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "مسار شعار غير صالح." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "السمه غير متوفرة: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "غيّر الشعار" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "شعار الموقع" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "غيّر السمة" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "سمه الموقع" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "سمه الموقع." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "تغيير صوره الخلفية" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "الخلفية" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, 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 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "مكّن" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "عطّل" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "مكّن صوره الخلفيه أو عطّلها." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "تغيير الألوان" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "المحتوى" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "الشريط الجانبي" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "النص" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "وصلات" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "استخدم المبدئيات" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "استعد التصميمات المبدئية" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "ارجع إلى المبدئي" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1139,7 +1153,7 @@ msgstr "ارجع إلى المبدئي" msgid "Save" msgstr "أرسل" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "احفظ التصميم" @@ -1714,13 +1728,15 @@ msgstr "" msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1745,7 +1761,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "أنشئ مجموعه جديدة" @@ -2994,7 +3010,7 @@ msgstr "اسم مستخدم أو كلمه سر غير صالحه." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3010,8 +3026,9 @@ msgstr "6 حروف أو أكثر. مطلوب." msgid "Same as password above. Required." msgstr "نفس كلمه السر أعلاه. مطلوب." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "البريد الإلكتروني" @@ -3124,7 +3141,7 @@ msgstr "ما ينفعش تكرر الملاحظه بتاعتك." msgid "You already repeated that notice." msgstr "انت عيدت الملاحظه دى فعلا." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "مكرر" @@ -4077,7 +4094,8 @@ msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" @@ -4229,27 +4247,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "استمتع بالنقانق!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s أعضاء المجموعة, الصفحه %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4297,7 +4318,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "النسخه" @@ -4450,164 +4472,180 @@ msgstr "تعذّر ضبط عضويه المجموعه." msgid "Could not save local group info." msgstr "تعذّر حفظ الاشتراك." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "ارفع أفتارًا" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "غير كلمه سرّك" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "صمّم ملفك الشخصي" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "أخرى" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "خيارات أخرى" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "أخرى" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "صفحه غير مُعنونة" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصى ومسار الأصدقاء الزمني" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "شخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير كلمه سرّك" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "كونيكشونات (Connections)" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "لُج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نص" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4615,73 +4653,87 @@ msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "المشاهدات المحلية" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "إشعار الصفحة" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "مساعدة" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "عن" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "الأسئله المكررة" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "الشروط" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "المصدر" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "اتصل" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4692,39 +4744,50 @@ msgstr "" "المتوفر تحت [رخصه غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "رخصه محتوى الموقع" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "بعد" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "قبل" @@ -5413,7 +5476,8 @@ msgstr "المجموعات الأكثر مرسلات" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5697,7 +5761,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "من" @@ -5823,48 +5887,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "ش" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "ج" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "ر" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "غ" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "ش" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "ج" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "ر" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "غ" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "في" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "فى السياق" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "متكرر من" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "الإشعار مكرر" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index ace8bc976a..d843c82a47 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 22:59:48+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:03+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -103,7 +103,7 @@ msgstr "Няма такака страница." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -117,7 +117,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -176,8 +177,10 @@ msgstr "" msgid "You and friends" msgstr "Вие и приятелите" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Бележки от %1$s и приятели в %2$s." @@ -193,13 +196,13 @@ msgstr "Бележки от %1$s и приятели в %2$s." #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -236,7 +239,7 @@ msgstr "Грешка при обновяване на потребителя." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Потребителят няма профил." @@ -248,7 +251,7 @@ msgstr "Грешка при запазване на профила." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -484,12 +487,14 @@ msgstr "Групи на %s" msgid "%1$s groups %2$s is a member of." msgstr "Групи, в които участва %s" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Групи на %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "групи в %s" @@ -548,7 +553,7 @@ 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/designadminpanel.php:104 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 @@ -572,7 +577,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Сметка" @@ -584,8 +590,9 @@ msgstr "Сметка" msgid "Nickname" msgstr "Псевдоним" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Парола" @@ -720,8 +727,9 @@ msgstr "Няма размер." msgid "Invalid size." msgstr "Неправилен размер." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Аватар" @@ -733,7 +741,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Потребител без съответстващ профил" @@ -754,7 +762,7 @@ msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Изтриване" @@ -888,16 +896,18 @@ msgstr "Кодът за потвърждение не е открит." msgid "That confirmation code is not for you!" msgstr "Този код за потвърждение не е за вас!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Неразпознат вид адрес %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Този адрес е вече потвърден." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -905,16 +915,16 @@ msgstr "Този адрес е вече потвърден." msgid "Couldn't update user." msgstr "Грешка при обновяване на потребителя." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Грешка при изтриване потвърждението по е-поща." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Потвърждаване на адрес" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресът \"%s\" е потвърден за сметката ви." @@ -946,7 +956,7 @@ msgstr "Не членувате в тази група." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -1005,7 +1015,7 @@ msgstr "Наистина ли искате да изтриете тази бел msgid "Do not delete this notice" msgstr "Да не се изтрива бележката" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -1031,114 +1041,118 @@ msgstr "" msgid "Delete this user" msgstr "Изтриване на този потребител" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "Неправилен размер." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Страницата не е достъпна във вида медия, който приемате" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Смяна на логото" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Лого на сайта" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Промяна" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Нова бележка" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 #, fuzzy msgid "Theme for the site." msgstr "Излизане от сайта" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Смяна на изображението за фон" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Фон" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, 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 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Вкл." -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Изкл." -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Смяна на цветовете" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Съдържание" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Страничен панел" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Текст" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Списък" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1150,7 +1164,7 @@ msgstr "" msgid "Save" msgstr "Запазване" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1751,13 +1765,15 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Поток на %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -1782,7 +1798,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Създаване на нова група" @@ -3100,7 +3116,7 @@ msgstr "Неправилно име или парола." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3118,8 +3134,9 @@ msgstr "6 или повече знака. Задължително поле." msgid "Same as password above. Required." msgstr "Същото като паролата по-горе. Задължително поле." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Е-поща" @@ -3254,7 +3271,7 @@ msgstr "Не можете да повтаряте собствена бележ msgid "You already repeated that notice." msgstr "Вече сте повторили тази бележка." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Повторено" @@ -4223,7 +4240,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" @@ -4390,27 +4408,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Членове на групата %s, страница %d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Търсене на още групи" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s не членува в никоя група." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -4458,7 +4479,8 @@ msgstr "" msgid "Plugins" msgstr "Приставки" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Версия" @@ -4625,235 +4647,265 @@ msgstr "Грешка при създаване на нов абонамент." msgid "Could not save local group info." msgstr "Грешка при създаване на нов абонамент." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Промяна настройките на профила" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Качване на аватар" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Смяна на паролата" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Промяна обработката на писмата" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "Потребителски профил" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Друго" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Други настройки" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Друго" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Неозаглавена страница" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промяна на поща, аватар, парола, профил" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Свързване към услуги" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Свързване" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промяна настройките на сайта" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Настройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Излизане от сайта" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Изход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Създаване на нова сметка" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Регистриране" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Влизане в сайта" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощ" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Помощ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Търсене за хора или бележки" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Нова бележка" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 #, fuzzy msgid "Page notice" msgstr "Нова бележка" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 #, fuzzy msgid "Secondary site navigation" msgstr "Абонаменти" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Помощ" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Относно" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Въпроси" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "Условия" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Поверителност" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Изходен код" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Контакт" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Табелка" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е услуга за микроблогване. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4864,39 +4916,50 @@ msgstr "" "достъпна под [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Лиценз на съдържанието" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Страниране" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "След" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Преди" @@ -5593,7 +5656,8 @@ msgstr "Групи с най-много бележки" msgid "Tags in %s group's notices" msgstr "Етикети в бележките към групата %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Страницата не е достъпна във вида медия, който приемате" @@ -5888,7 +5952,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "от" @@ -6017,48 +6081,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "С" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "Ю" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "И" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "З" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "С" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "Ю" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "И" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "З" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "в контекст" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Повторено от" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Бележката е повторена." diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 74e0261ada..f1329a91c1 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 22:59:52+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:07+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -80,9 +80,8 @@ 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 -#, fuzzy msgid "No such page." -msgstr "N'eus ket eus ar bajenn-se" +msgstr "N'eus ket eus ar bajenn-se." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -102,7 +101,7 @@ msgstr "N'eus ket eus ar bajenn-se" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -116,7 +115,8 @@ 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 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -175,8 +175,10 @@ msgstr "" msgid "You and friends" msgstr "C'hwi hag o mignoned" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" @@ -192,13 +194,13 @@ msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -235,7 +237,7 @@ msgstr "Diposubl eo hizivaat an implijer." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "An implijer-mañ n'eus profil ebet dezhañ." @@ -247,7 +249,7 @@ msgstr "Diposubl eo enrollañ ar profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -423,9 +425,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Re a aliasoù ! %d d'ar muiañ." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Alias fall : \"%s\"" +msgstr "Alias fall : \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -441,9 +443,8 @@ 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 -#, fuzzy msgid "Group not found." -msgstr "N'eo ket bet kavet ar strollad !" +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." @@ -479,12 +480,14 @@ msgstr "Strollad %s" msgid "%1$s groups %2$s is a member of." msgstr "Ezel eo %s eus ar strolladoù" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Strolladoù %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "strolladoù war %s" @@ -540,7 +543,7 @@ 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/designadminpanel.php:104 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 @@ -564,7 +567,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Kont" @@ -576,8 +580,9 @@ msgstr "Kont" msgid "Nickname" msgstr "Lesanv" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Ger-tremen" @@ -710,8 +715,9 @@ msgstr "Ment ebet." msgid "Invalid size." msgstr "Ment direizh." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -722,7 +728,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "" @@ -742,7 +748,7 @@ msgid "Preview" msgstr "Rakwelet" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Diverkañ" @@ -876,16 +882,18 @@ msgstr "N'eo ket bet kavet ar c'hod kadarnaat." msgid "That confirmation code is not for you!" msgstr "N'eo ket ar c'hod-se evidoc'h !" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "N'eo ket bet anavezet seurt ar chomlec'h %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 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/confirmaddress.php:116 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 @@ -893,16 +901,16 @@ msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." msgid "Couldn't update user." msgstr "Diposubl eo hizivaat an implijer." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 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 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Chomlec'h kadarnaet" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Kadarnaet eo bet ar chomlec'h \"%s\" evit ho kont." @@ -931,7 +939,7 @@ 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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -987,7 +995,7 @@ msgstr "Ha sur oc'h ho peus c'hoant dilemel an ali-mañ ?" msgid "Do not delete this notice" msgstr "Arabat dilemel an ali-mañ" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Dilemel an ali-mañ" @@ -1013,109 +1021,113 @@ msgstr "" msgid "Delete this user" msgstr "Diverkañ an implijer-mañ" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Design" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Arventennoù design evit al lec'hienn StatusNet-mañ." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "URL fall evit al logo." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "N'eus ket tu kaout an dodenn : %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Cheñch al logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logo al lec'hienn" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Lakaat un dodenn all" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Dodenn al lec'hienn" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Dodenn evit al lec'hienn." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Kemmañ ar skeudenn foñs" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Background" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, 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 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Gweredekaet" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Diweredekaet" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 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 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Adober gant ar skeudenn drekleur" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Kemmañ al livioù" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Endalc'h" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barenn kostez" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Testenn" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Liammoù" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Implijout an talvoudoù dre ziouer" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Adlakaat an neuz dre ziouer." -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Adlakaat an arventennoù dre ziouer" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1127,7 +1139,7 @@ msgstr "Adlakaat an arventennoù dre ziouer" msgid "Save" msgstr "Enrollañ" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Enrollañ an design" @@ -1698,13 +1710,15 @@ msgstr "Lakaat ur merour" msgid "Make this user an admin" msgstr "Lakaat an implijer-mañ da verour" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Oberezhioù %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Hizivadenn izili %1$s e %2$s !" @@ -1729,7 +1743,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Krouiñ ur strollad nevez" @@ -2087,9 +2101,8 @@ 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 -#, fuzzy msgid "No current status." -msgstr "Statud ebet er mare-mañ" +msgstr "Statud ebet er mare-mañ." #: actions/newapplication.php:52 msgid "New Application" @@ -2260,9 +2273,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "" #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "N'en deus ket an ali a profil" +msgstr "N'en deus ket an ali a profil." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2983,7 +2995,7 @@ msgstr "" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -2999,8 +3011,9 @@ msgstr "6 arouezenn pe muioc'h. Rekis." msgid "Same as password above. Required." msgstr "Memestra hag ar ger-tremen a-us. Rekis." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Postel" @@ -3113,7 +3126,7 @@ msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." msgid "You already repeated that notice." msgstr "Adkemeret o peus dija an ali-mañ." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Adlavaret" @@ -4052,7 +4065,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4204,27 +4218,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Bez plijadur gant da hotdog !" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Strolladoù %1$s, pajenn %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Klask muioc'h a strolladoù" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "N'eo ket ezel %s eus ur strollad." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Hizivadennoù eus %1$s e %2$s!" @@ -4272,7 +4289,8 @@ msgstr "" msgid "Plugins" msgstr "Pluginoù" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Stumm" @@ -4421,219 +4439,249 @@ msgstr "" msgid "Could not save local group info." msgstr "" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Enporzhiañ un avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Cheñch ar ger-tremen" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "All" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Dibarzhioù all" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "All" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Pajenn hep anv" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Personel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Kemmañ ho chomlec'h postel, hoc'h avatar, ho ger-tremen, ho profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Liammañ d'ar servijoù" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Kevreañ" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Merañ" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Pediñ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Digevreañ diouzh al lec'hienn" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Digevreañ" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Krouiñ ur gont" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "En em enskrivañ" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kevreañ d'al lec'hienn" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Kevreañ" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Sikour din !" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Skoazell" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Klask tud pe un tamm testenn" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Klask" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Ali al lec'hienn" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Selloù lec'hel" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Ali ar bajenn" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Skoazell" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Diwar-benn" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAG" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "AIH" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Prevezded" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Mammenn" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Darempred" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Badj" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Aotre-implijout ar meziant StatusNet" -#: lib/action.php:803 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4641,39 +4689,50 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Pajennadur" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "War-lerc'h" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Kent" @@ -5343,7 +5402,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5627,7 +5687,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "eus" @@ -5752,48 +5812,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "R" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "K" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "R" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "K" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "e" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "en amdro" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Adkemeret gant" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Respont d'an ali-mañ" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Respont" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Ali adkemeret" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index cbd785c5f1..c4fff296ed 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # # Author@translatewiki.net: Aleator # Author@translatewiki.net: McDutchie +# Author@translatewiki.net: Paucabot # Author@translatewiki.net: Toniher # -- # This file is distributed under the same license as the StatusNet package. @@ -10,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 22:59:55+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:10+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -35,7 +36,6 @@ msgstr "Desa els paràmetres del lloc" #. TRANS: Form legend for registration form. #: actions/accessadminpanel.php:161 -#, fuzzy msgid "Registration" msgstr "Registre" @@ -48,7 +48,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privat" @@ -80,15 +79,13 @@ msgid "Save access settings" msgstr "Desa els paràmetres del lloc" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" -msgstr "Guardar" +msgstr "Desa" #. 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 -#, fuzzy msgid "No such page." msgstr "No existeix la pàgina." @@ -110,7 +107,7 @@ msgstr "No existeix la pàgina." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -124,7 +121,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,8 +183,10 @@ msgstr "" msgid "You and friends" msgstr "Un mateix i amics" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!" @@ -202,13 +202,13 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -247,7 +247,7 @@ msgstr "No s'ha pogut actualitzar l'usuari." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "L'usuari no té perfil." @@ -260,7 +260,7 @@ msgstr "No s'ha pogut guardar el perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -287,9 +287,8 @@ msgid "Could not update your design." msgstr "No s'ha pogut actualitzar l'usuari." #: actions/apiblockcreate.php:105 -#, fuzzy msgid "You cannot block yourself!" -msgstr "No podeu suprimir els usuaris." +msgstr "No podeu bloquejar-vos a vosaltres mateixos!" #: actions/apiblockcreate.php:126 msgid "Block user failed." @@ -344,18 +343,16 @@ msgid "No status found with that ID." msgstr "No s'ha trobat cap estatus amb aquesta ID." #: actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite." -msgstr "Aquest estat ja és un preferit!" +msgstr "Aquest estat ja és un preferit." #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 msgid "Could not create favorite." msgstr "No es pot crear favorit." #: actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite." -msgstr "L'estat no és un preferit!" +msgstr "L'estat no és un preferit." #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 msgid "Could not delete favorite." @@ -372,14 +369,12 @@ msgstr "" "No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." #: actions/apifriendshipsdestroy.php:109 -#, fuzzy msgid "Could not unfollow user: User not found." -msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." +msgstr "No pots subscriure't a aquest usuari: l'usuari no existeix." #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "No podeu suprimir els usuaris." +msgstr "No podeu deixar de seguir-vos a vosaltres mateixos." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." @@ -464,9 +459,8 @@ msgstr "L'àlies no pot ser el mateix que el sobrenom." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "No s'ha trobat el grup!" +msgstr "No s'ha trobat el grup." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -502,12 +496,14 @@ msgstr "Grups de %s" msgid "%1$s groups %2$s is a member of." msgstr "%s grups són membres de" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grups" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "grups sobre %s" @@ -542,19 +538,16 @@ msgstr "" "us plau." #: actions/apioauthauthorize.php:135 -#, fuzzy msgid "Invalid nickname / password!" -msgstr "Nom d'usuari o contrasenya invàlids." +msgstr "Nom d'usuari / contrasenya no vàlid!" #: actions/apioauthauthorize.php:159 -#, fuzzy msgid "Database error deleting OAuth application user." -msgstr "Error en configurar l'usuari." +msgstr "Error de la base de dades en esborrar l'usuari de l'aplicació OAuth." #: actions/apioauthauthorize.php:185 -#, fuzzy msgid "Database error inserting OAuth application user." -msgstr "Hashtag de l'error de la base de dades:%s" +msgstr "Error de la base de dades en inserir l'usuari de l'aplicació OAuth." #: actions/apioauthauthorize.php:214 #, php-format @@ -569,7 +562,7 @@ 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/designadminpanel.php:104 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 @@ -593,7 +586,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Compte" @@ -605,20 +599,19 @@ msgstr "Compte" msgid "Nickname" msgstr "Sobrenom" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Contrasenya" #: actions/apioauthauthorize.php:328 -#, fuzzy msgid "Deny" -msgstr "Disseny" +msgstr "Denega" #: actions/apioauthauthorize.php:334 -#, fuzzy msgid "Allow" -msgstr "Tot" +msgstr "Permet" #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." @@ -638,14 +631,12 @@ msgid "No such notice." msgstr "No existeix aquest avís." #: actions/apistatusesretweet.php:83 -#, fuzzy msgid "Cannot repeat your own notice." -msgstr "No es poden posar en on les notificacions." +msgstr "No podeu repetir els vostres propis avisos." #: actions/apistatusesretweet.php:91 -#, fuzzy msgid "Already repeated that notice." -msgstr "Eliminar aquesta nota" +msgstr "Avís duplicat." #: actions/apistatusesshow.php:138 msgid "Status deleted." @@ -743,8 +734,9 @@ msgstr "Cap mida." msgid "Invalid size." msgstr "Mida invàlida." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -756,7 +748,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Usuari sense perfil coincident" @@ -777,7 +769,7 @@ msgid "Preview" msgstr "Vista prèvia" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Suprimeix" @@ -790,9 +782,8 @@ msgid "Crop" msgstr "Retalla" #: actions/avatarsettings.php:305 -#, fuzzy msgid "No file uploaded." -msgstr "No s'ha especificat perfil." +msgstr "No s'ha carregat cap fitxer." #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" @@ -898,9 +889,9 @@ msgstr "Desbloca l'usuari" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Envia a " +msgstr "Publicar a %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -914,16 +905,18 @@ msgstr "Codi de confirmació no trobat. " msgid "That confirmation code is not for you!" msgstr "Aquest codi de confirmació no és per a tu!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tipus d'adreça %s desconeguda" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Aquesta adreça ja ha estat confirmada." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -931,17 +924,16 @@ msgstr "Aquesta adreça ja ha estat confirmada." msgid "Couldn't update user." msgstr "No s'ha pogut actualitzar l'usuari." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." -#: actions/confirmaddress.php:144 -#, fuzzy +#: actions/confirmaddress.php:146 msgid "Confirm address" -msgstr "Confirmar adreça" +msgstr "Confirmeu l'adreça de correu electrònic" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte." @@ -973,7 +965,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." @@ -1036,7 +1028,7 @@ msgstr "N'estàs segur que vols eliminar aquesta notificació?" msgid "Do not delete this notice" msgstr "No es pot esborrar la notificació." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Eliminar aquesta nota" @@ -1063,109 +1055,113 @@ msgstr "" msgid "Delete this user" msgstr "Suprimeix l'usuari" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Disseny" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Paràmetres de disseny d'aquest lloc StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "L'URL del logotip no és vàlid." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "El tema no és disponible: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Canvia el logotip" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logotip del lloc" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Canvia el tema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Tema del lloc" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Tema del lloc." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Canvia la imatge de fons" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Fons" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "Pots pujar una imatge de logo per al grup." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Activada" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Desactivada" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activa o desactiva la imatge de fons." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Posa en mosaic la imatge de fons" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Canvia els colors" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Contingut" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Enllaços" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1177,7 +1173,7 @@ msgstr "" msgid "Save" msgstr "Guardar" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Desa el disseny" @@ -1190,25 +1186,22 @@ msgid "Add to favorites" msgstr "Afegeix als preferits" #: actions/doc.php:158 -#, fuzzy, php-format +#, php-format msgid "No such document \"%s\"" -msgstr "No existeix aquest document." +msgstr "No existeix el document \"%s\"" #: actions/editapplication.php:54 -#, fuzzy msgid "Edit Application" -msgstr "Altres opcions" +msgstr "Editeu l'aplicació" #: actions/editapplication.php:66 -#, fuzzy msgid "You must be logged in to edit an application." -msgstr "Heu d'iniciar una sessió per editar un grup." +msgstr "Heu d'iniciar una sessió per editar una aplicació." #: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 #: actions/showapplication.php:87 -#, fuzzy msgid "No such application." -msgstr "No existeix aquest avís." +msgstr "No hi ha tal aplicació." #: actions/editapplication.php:161 #, fuzzy @@ -1240,18 +1233,16 @@ msgid "Source URL is too long." msgstr "" #: actions/editapplication.php:200 actions/newapplication.php:185 -#, fuzzy msgid "Source URL is not valid." -msgstr "La pàgina personal no és un URL vàlid." +msgstr "La URL d'origen no és vàlida." #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." msgstr "" #: actions/editapplication.php:206 actions/newapplication.php:191 -#, fuzzy msgid "Organization is too long (max 255 chars)." -msgstr "La ubicació és massa llarga (màx. 255 caràcters)." +msgstr "El camp organització és massa llarg (màx. 255 caràcters)." #: actions/editapplication.php:209 actions/newapplication.php:194 msgid "Organization homepage is required." @@ -1351,9 +1342,8 @@ msgid "Cancel" msgstr "Cancel·la" #: actions/emailsettings.php:121 -#, fuzzy msgid "Email address" -msgstr "Direcció de correu electrònic" +msgstr "Adreça de correu electrònic" #: actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" @@ -1623,9 +1613,8 @@ 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." +msgstr "Rol no vàlid." #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." @@ -1783,13 +1772,15 @@ msgstr "Fes-lo administrador" msgid "Make this user an admin" msgstr "Fes l'usuari administrador" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s línia temporal" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualitzacions dels membres de %1$s el %2$s!" @@ -1814,7 +1805,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crea un grup nou" @@ -2050,7 +2041,6 @@ msgstr "Opcionalment pots afegir un missatge a la invitació." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Envia" @@ -2124,9 +2114,8 @@ msgid "You must be logged in to join a group." msgstr "Has d'haver entrat per participar en un grup." #: actions/joingroup.php:88 actions/leavegroup.php:88 -#, fuzzy msgid "No nickname or ID." -msgstr "Cap sobrenom." +msgstr "Cap sobrenom o ID." #: actions/joingroup.php:141 #, php-format @@ -2224,9 +2213,8 @@ msgid "No current status." msgstr "No té cap estatus ara mateix" #: actions/newapplication.php:52 -#, fuzzy msgid "New Application" -msgstr "No existeix aquest avís." +msgstr "Nova Aplicació" #: actions/newapplication.php:64 #, fuzzy @@ -2234,13 +2222,12 @@ msgid "You must be logged in to register an application." msgstr "Has d'haver entrat per crear un grup." #: actions/newapplication.php:143 -#, fuzzy msgid "Use this form to register a new application." -msgstr "Utilitza aquest formulari per crear un nou grup." +msgstr "Utilitzeu aquest formulari per crear una nova aplicació." #: actions/newapplication.php:176 msgid "Source URL is required." -msgstr "" +msgstr "URL d'origen requerida." #: actions/newapplication.php:258 actions/newapplication.php:267 #, fuzzy @@ -3153,8 +3140,9 @@ msgid "Invalid username or password." msgstr "Nom d'usuari o contrasenya invàlids." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Amb aquest formulari, podeu crear un compte nou. Podeu enviar avisos i " @@ -3173,8 +3161,9 @@ msgstr "6 o més caràcters. Requerit." msgid "Same as password above. Required." msgstr "Igual a la contrasenya de dalt. Requerit." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Correu electrònic" @@ -3315,7 +3304,7 @@ msgstr "No pots registrar-te si no estàs d'acord amb la llicència." msgid "You already repeated that notice." msgstr "Ja heu blocat l'usuari." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Repetit" @@ -4306,7 +4295,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4471,27 +4461,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Gaudiu de l'entrepà!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "%s membre/s en el grup, pàgina %d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Cerca més grups" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s no és membre de cap grup." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" @@ -4539,7 +4532,8 @@ msgstr "" msgid "Plugins" msgstr "Connectors" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Sessions" @@ -4705,165 +4699,181 @@ msgstr "No s'ha pogut establir la pertinença d'aquest grup." msgid "Could not save local group info." msgstr "No s'ha pogut guardar la subscripció." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Canvieu els paràmetres del vostre perfil" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Puja un avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Canvieu la vostra contrasenya" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Canvieu la gestió del correu" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "Perfil de l'usuari" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Altres" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Altres opcions" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Altres" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s (%2$s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Pàgina sense titol" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Navegació primària del lloc" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal i línia temporal dels amics" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "No s'ha pogut redirigir al servidor: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Connexió" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Canvia la configuració del lloc" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convida" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Finalitza la sessió del lloc" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un compte" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registre" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Inicia una sessió al lloc" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inici de sessió" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajuda'm" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca gent o text" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4871,73 +4881,87 @@ msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Avís del lloc" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Vistes locals" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Notificació pàgina" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Ajuda" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Quant a" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Preguntes més freqüents" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privadesa" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Font" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contacte" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Insígnia" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** és un servei de microblogging." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4948,39 +4972,50 @@ msgstr "" "%s, disponible sota la [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Llicència de contingut del lloc" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Paginació" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Posteriors" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Anteriors" @@ -5674,7 +5709,8 @@ msgstr "Grups amb més entrades" msgid "Tags in %s group's notices" msgstr "Etiquetes en les notificacions del grup %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis." @@ -5974,7 +6010,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "de" @@ -6103,49 +6139,53 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "No" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "en context" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Repetit per" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "respondre a aquesta nota" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Respon" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Notificació publicada" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index b963009c94..8ca760473e 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 22:59:58+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:13+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -109,7 +109,7 @@ msgstr "Žádné takové oznámení." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -123,7 +123,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,8 +184,10 @@ msgstr "" msgid "You and friends" msgstr "%s a přátelé" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -200,13 +203,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -245,7 +248,7 @@ msgstr "Nelze aktualizovat uživatele" #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Uživatel nemá profil." @@ -258,7 +261,7 @@ msgstr "Nelze uložit profil" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -496,12 +499,14 @@ msgstr "Profil" msgid "%1$s groups %2$s is a member of." msgstr "Neodeslal jste nám profil" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "" @@ -561,7 +566,7 @@ 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/designadminpanel.php:104 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 @@ -585,7 +590,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 #, fuzzy msgid "Account" msgstr "O nás" @@ -598,8 +604,9 @@ msgstr "O nás" msgid "Nickname" msgstr "Přezdívka" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Heslo" @@ -739,8 +746,9 @@ msgstr "Žádná velikost" msgid "Invalid size." msgstr "Neplatná velikost" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Obrázek" @@ -751,7 +759,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Uživatel nemá profil." @@ -773,7 +781,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Odstranit" @@ -913,16 +921,18 @@ msgstr "Potvrzující kód nebyl nalezen" msgid "That confirmation code is not for you!" msgstr "Tento potvrzující kód vám nepatří!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Neznámý typ adresy %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Adresa již byla potvrzena" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -930,17 +940,17 @@ msgstr "Adresa již byla potvrzena" msgid "Couldn't update user." msgstr "Nelze aktualizovat uživatele" -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Nelze smazat potvrzení emailu" -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Potvrď adresu" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adresa \"%s\" byla potvrzena pro váš účet" @@ -973,7 +983,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -1033,7 +1043,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "Žádné takové oznámení." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -1061,115 +1071,119 @@ msgstr "" msgid "Delete this user" msgstr "Odstranit tohoto uživatele" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Vzhled" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "Neplatná velikost" -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Tato stránka není k dispozici v typu média která přijímáte." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "Změnit heslo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "Nové sdělení" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Změnit" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Nové sdělení" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Pozadí" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Změnit barvy" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Obsah" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "Hledat" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Odkazy" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1181,7 +1195,7 @@ msgstr "" msgid "Save" msgstr "Uložit" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1788,13 +1802,15 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Mikroblog od %s" @@ -1819,7 +1835,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Vytvořit nový účet" @@ -3123,7 +3139,7 @@ msgstr "Neplatné jméno nebo heslo" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3139,8 +3155,9 @@ msgstr "" msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Email" @@ -3264,7 +3281,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." msgid "You already repeated that notice." msgstr "Již jste přihlášen" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "Vytvořit" @@ -4242,7 +4259,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4411,27 +4429,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Všechny odběry" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Neodeslal jste nám profil" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4479,7 +4500,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Osobní" @@ -4643,161 +4665,177 @@ msgstr "Nelze vytvořit odebírat" msgid "Could not save local group info." msgstr "Nelze vytvořit odebírat" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 #, fuzzy msgid "Upload an avatar" msgstr "Nahrávání obrázku selhalo." -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "Uživatel nemá profil." -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1 statusů na %2" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Osobní" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Změnit heslo" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Nelze přesměrovat na server: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Připojit" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Odběry" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Neplatná velikost" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Odhlásit" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Vytvořit nový účet" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrovat" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Přihlásit" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomoci mi!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Nápověda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4805,76 +4843,90 @@ msgstr "Hledat" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Nové sdělení" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 #, fuzzy msgid "Page notice" msgstr "Nové sdělení" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 #, fuzzy msgid "Secondary site navigation" msgstr "Odběry" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Nápověda" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "O nás" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Soukromí" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Zdroj" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** je služba mikroblogů." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4885,41 +4937,52 @@ msgstr "" "dostupná pod [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "Nové sdělení" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 #, fuzzy msgid "After" msgstr "« Novější" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 #, fuzzy msgid "Before" msgstr "Starší »" @@ -5627,7 +5690,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Tato stránka není k dispozici v typu média která přijímáte." @@ -5921,7 +5985,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 #, fuzzy msgid "from" msgstr " od " @@ -6053,51 +6117,55 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "Žádný obsah!" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "Vytvořit" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 #, fuzzy msgid "Reply" msgstr "odpověď" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Sdělení" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 4bd83a2384..bef2eb1006 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:01+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:16+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -109,7 +109,7 @@ msgstr "Seite nicht vorhanden" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -123,7 +123,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -192,8 +193,10 @@ msgstr "" msgid "You and friends" msgstr "Du und Freunde" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" @@ -209,13 +212,13 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -252,7 +255,7 @@ msgstr "Konnte Benutzerdaten nicht aktualisieren." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Benutzer hat kein Profil." @@ -264,7 +267,7 @@ msgstr "Konnte Profil nicht speichern." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -501,12 +504,14 @@ msgstr "%s’s Gruppen" msgid "%1$s groups %2$s is a member of." msgstr "Gruppen in denen %s Mitglied ist" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s Gruppen" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "Gruppen von %s" @@ -564,7 +569,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Die Anfrage %s wurde gesperrt und widerrufen." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -591,7 +596,8 @@ msgstr "" "%3$s bei deinem %4$s Zugang. Du solltest nur " "vertrauenswürdigen Quellen Erlaubnis zu deinem %4$s Zugang geben." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Profil" @@ -603,8 +609,9 @@ msgstr "Profil" msgid "Nickname" msgstr "Nutzername" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Passwort" @@ -740,8 +747,9 @@ msgstr "Keine Größe." msgid "Invalid size." msgstr "Ungültige Größe." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -753,7 +761,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Benutzer ohne passendes Profil" @@ -773,7 +781,7 @@ msgid "Preview" msgstr "Vorschau" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Löschen" @@ -910,16 +918,18 @@ msgstr "Bestätigungscode nicht gefunden." msgid "That confirmation code is not for you!" msgstr "Dieser Bestätigungscode ist nicht für dich!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Nicht erkannter Adresstyp %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Diese Adresse wurde bereits bestätigt." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -927,16 +937,16 @@ msgstr "Diese Adresse wurde bereits bestätigt." msgid "Couldn't update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Konnte E-Mail-Bestätigung nicht löschen." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Adresse bestätigen" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Die Adresse „%s“ wurde für dein Konto bestätigt." @@ -965,7 +975,7 @@ msgstr "Du bist Besitzer dieses Programms" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1025,7 +1035,7 @@ msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" msgid "Do not delete this notice" msgstr "Diese Nachricht nicht löschen" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Nachricht löschen" @@ -1053,54 +1063,56 @@ msgstr "" msgid "Delete this user" msgstr "Diesen Benutzer löschen" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Design" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Design-Einstellungen für diese StatusNet-Website." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "Ungültige URL für das Logo" -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Theme nicht verfügbar: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Logo ändern" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Seitenlogo" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Theme ändern" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Seitentheme" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Theme dieser Seite." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Hintergrundbild ändern" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Hintergrund" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1109,55 +1121,57 @@ msgstr "" "Du kannst ein Hintergrundbild für Deine Gruppe hochladen. Die maximale " "Dateigröße beträgt %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "An" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Aus" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Hintergrundbild ein- oder ausschalten." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Hintergrundbild kacheln" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Farben ändern" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Inhalt" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Seitenleiste" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Links" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Standardeinstellungen benutzen" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Standard-Design wiederherstellen" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Standard wiederherstellen" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1169,7 +1183,7 @@ msgstr "Standard wiederherstellen" msgid "Save" msgstr "Speichern" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Design speichern" @@ -1764,13 +1778,15 @@ msgstr "Zum Admin ernennen" msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s Zeitleiste" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" @@ -1800,7 +1816,7 @@ msgstr "" "suchen](%%%%action.groupsearch%%%%) oder deine eigene [Gruppe aufmachen!](%%%" "%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Neue Gruppe erstellen" @@ -3148,8 +3164,9 @@ msgid "Invalid username or password." msgstr "Benutzername oder Passwort falsch." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Hier kannst du einen neuen Zugang einrichten. Danach kannst du Nachrichten " @@ -3169,8 +3186,9 @@ msgstr "6 oder mehr Buchstaben. Pflicht." msgid "Same as password above. Required." msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-Mail" @@ -3308,7 +3326,7 @@ msgstr "Du kannst deine eigene Nachricht nicht wiederholen." msgid "You already repeated that notice." msgstr "Nachricht bereits wiederholt" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Wiederholt" @@ -4312,7 +4330,8 @@ msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ungültiges Abonnement: '%1$s' ist kein Benutzer" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4475,28 +4494,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Hab Spaß!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s Gruppen, Seite %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Suche nach weiteren Gruppen" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s ist in keiner Gruppe Mitglied." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Versuche [Gruppen zu finden](%%action.groupsearch%%) und diesen beizutreten." -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" @@ -4556,7 +4578,8 @@ msgstr "" msgid "Plugins" msgstr "Erweiterungen" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Version" @@ -4714,221 +4737,251 @@ msgstr "Konnte Gruppenmitgliedschaft nicht setzen." msgid "Could not save local group info." msgstr "Konnte die lokale Gruppen Information nicht speichern." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Avatar hochladen" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Ändere dein Passwort" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Ändere die E-Mail-Verarbeitung" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Passe dein Profil an" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Sonstige" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Sonstige Optionen" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Sonstige" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Seite ohne Titel" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Hauptnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Eigene" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, Avatar, Passwort und Profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Zum Dienst verbinden" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Verbinden" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Seiteneinstellung ändern" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Einladen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Von der Seite abmelden" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Abmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Neues Konto erstellen" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registrieren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Suchen" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Seitennachricht" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Lokale Ansichten" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Neue Nachricht" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Unternavigation" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Hilfe" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Über" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "AGB" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privatsphäre" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Quellcode" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Plakette" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** ist ein Microbloggingdienst." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4939,43 +4992,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:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhalte und Daten von %1$s sind privat und vertraulich." -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Inhalt und Daten urheberrechtlich geschützt durch %1$s. Alle Rechte " "vorbehalten." -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Urheberrecht von Inhalt und Daten liegt bei den Beteiligten. Alle Rechte " "vorbehalten." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Seitenerstellung" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Später" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Vorher" @@ -5692,7 +5756,8 @@ msgstr "Gruppen mit den meisten Beiträgen" msgid "Tags in %s group's notices" msgstr "Stichworte in den Nachrichten der Gruppe %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor." @@ -6047,7 +6112,7 @@ msgstr "" "schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir " "Nachrichten schicken, die nur Du sehen kannst." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "von" @@ -6180,48 +6245,52 @@ msgstr "" "Es tut uns Leid, aber die Abfrage deiner GPS Position hat zu lange gedauert. " "Bitte versuche es später wieder." +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "O" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "W" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "O" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "W" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "in" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "im Zusammenhang" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Wiederholt von" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Antworten" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Nachricht wiederholt" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 3725022918..623474e3ec 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:04+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:19+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -104,7 +104,7 @@ msgstr "Δεν υπάρχει τέτοια σελίδα" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -118,7 +118,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -181,8 +182,10 @@ msgstr "" msgid "You and friends" msgstr "Εσείς και οι φίλοι σας" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -198,13 +201,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -243,7 +246,7 @@ msgstr "Απέτυχε η ενημέρωση του χρήστη." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "" @@ -256,7 +259,7 @@ msgstr "Απέτυχε η αποθήκευση του προφίλ." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -491,12 +494,14 @@ msgstr "ομάδες των χρηστών %s" msgid "%1$s groups %2$s is a member of." msgstr "Δεν είστε μέλος καμίας ομάδας." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "ομάδες του χρήστη %s" @@ -555,7 +560,7 @@ 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/designadminpanel.php:104 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 @@ -579,7 +584,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Λογαριασμός" @@ -591,8 +597,9 @@ msgstr "Λογαριασμός" msgid "Nickname" msgstr "Ψευδώνυμο" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Κωδικός" @@ -727,8 +734,9 @@ msgstr "" msgid "Invalid size." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "" @@ -739,7 +747,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "" @@ -759,7 +767,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Διαγραφή" @@ -896,16 +904,18 @@ msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." msgid "That confirmation code is not for you!" msgstr "" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, php-format msgid "Unrecognized address type %s." msgstr "" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -913,17 +923,17 @@ msgstr "" msgid "Couldn't update user." msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Επιβεβαίωση διεύθυνσης" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -955,7 +965,7 @@ msgstr "Ομάδες με τα περισσότερα μέλη" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -1016,7 +1026,7 @@ msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυ msgid "Do not delete this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1043,112 +1053,116 @@ msgstr "" msgid "Delete this user" msgstr "Διαγράψτε αυτόν τον χρήστη" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "" -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "Αλλάξτε τον κωδικό σας" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Αλλαγή" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Αλλαγή" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, 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 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Αλλαγή χρωμάτων" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Περιεχόμενο" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Σύνδεσμοι" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1160,7 +1174,7 @@ msgstr "" msgid "Save" msgstr "" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1760,13 +1774,15 @@ msgstr "Διαχειριστής" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "χρονοδιάγραμμα του χρήστη %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1791,7 +1807,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Δημιουργία νέου λογαριασμού" @@ -3071,7 +3087,7 @@ msgstr "" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3087,8 +3103,9 @@ msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Email" @@ -3224,7 +3241,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "Δημιουργία" @@ -4183,7 +4200,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" @@ -4340,27 +4358,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4408,7 +4429,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Προσωπικά" @@ -4567,234 +4589,264 @@ msgstr "Αδύνατη η αποθήκευση των νέων πληροφορ msgid "Could not save local group info." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Αλλάξτε τον κωδικό σας" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Σχεδιάστε το προφίλ σας" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Προσωπικά" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Αλλάξτε τον κωδικό σας" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Σύνδεση" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Διαχειριστής" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Μήνυμα" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Αποσύνδεση" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Δημιουργία ενός λογαριασμού" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Περιγραφή" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Σύνδεση" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Βοηθήστε με!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Βοήθεια" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Βοήθεια" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Περί" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Συχνές ερωτήσεις" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Επικοινωνία" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " "έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, fuzzy, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4802,39 +4854,50 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "" @@ -5521,7 +5584,8 @@ msgstr "Ομάδες με τις περισσότερες δημοσιεύσει msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5808,7 +5872,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "από" @@ -5936,48 +6000,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Επαναλαμβάνεται από" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Ρυθμίσεις OpenID" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index c3eaf8d37c..f6d2009328 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:08+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:22+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -105,7 +105,7 @@ msgstr "No such page" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -119,7 +119,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,8 +186,10 @@ msgstr "" msgid "You and friends" msgstr "You and friends" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates from %1$s and friends on %2$s!" @@ -202,13 +205,13 @@ msgstr "Updates from %1$s and friends on %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -249,7 +252,7 @@ msgstr "Couldn't update user." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "User has no profile." @@ -262,7 +265,7 @@ msgstr "Couldn't save profile." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -493,12 +496,14 @@ msgstr "%s's groups" msgid "%1$s groups %2$s is a member of." msgstr "Groups %s is a member of" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s groups" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "groups on %s" @@ -556,7 +561,7 @@ msgid "The request token %s has been denied and revoked." msgstr "The request token %s has been denied and revoked." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -583,7 +588,8 @@ msgstr "" "the ability to %3$s your %4$s account data. You should only " "give access to your %4$s account to third parties you trust." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Account" @@ -595,8 +601,9 @@ msgstr "Account" msgid "Nickname" msgstr "Nickname" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Password" @@ -729,8 +736,9 @@ msgstr "No size." msgid "Invalid size." msgstr "Invalid size." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -741,7 +749,7 @@ msgstr "You can upload your personal avatar. The maximum file size is %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "User without matching profile." @@ -761,7 +769,7 @@ msgid "Preview" msgstr "Preview" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Delete" @@ -898,16 +906,18 @@ msgstr "Confirmation code not found." msgid "That confirmation code is not for you!" msgstr "That confirmation code is not for you!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Unrecognised address type %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "That address has already been confirmed." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -915,16 +925,16 @@ msgstr "That address has already been confirmed." msgid "Couldn't update user." msgstr "Couldn't update user." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Couldn't delete e-mail confirmation." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Confirm address" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "The address \"%s\" has been confirmed for your account." @@ -953,7 +963,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1014,7 +1024,7 @@ msgstr "Are you sure you want to delete this notice?" msgid "Do not delete this notice" msgstr "Do not delete this notice" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Delete this notice" @@ -1042,54 +1052,56 @@ msgstr "" msgid "Delete this user" msgstr "Delete this user" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Design" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Design settings for this StausNet site." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "nvalid logo URL." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Theme not available: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Change logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Site logo" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Change theme" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Site theme" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Theme for the site." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Change background image" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Background" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1098,55 +1110,57 @@ msgstr "" "You can upload a background image for the site. The maximum file size is %1" "$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "On" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Off" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Turn background image on or off." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Tile background image" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Change colours" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Content" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Sidebar" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Links" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Use defaults" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restore default designs" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Reset back to default" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1158,7 +1172,7 @@ msgstr "Reset back to default" msgid "Save" msgstr "Save" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Save design" @@ -1747,13 +1761,15 @@ msgstr "Make admin" msgid "Make this user an admin" msgstr "Make this user an admin" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s timeline" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Updates from members of %1$s on %2$s!" @@ -1783,7 +1799,7 @@ msgstr "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Create a new group" @@ -3093,7 +3109,7 @@ msgstr "Invalid username or password." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3109,8 +3125,9 @@ msgstr "6 or more characters. Required." msgid "Same as password above. Required." msgstr "Same as password above. Required." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-mail" @@ -3244,7 +3261,7 @@ msgstr "You can't repeat your own notice." msgid "You already repeated that notice." msgstr "You already repeated that notice." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Repeated" @@ -4226,7 +4243,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profile" @@ -4389,27 +4407,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s groups, page %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Search for more groups" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s is not a member of any group." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" @@ -4467,7 +4488,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Version" @@ -4620,164 +4642,180 @@ msgstr "Could not set group membership." msgid "Could not save local group info." msgstr "Could not save local group info." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Change your profile settings" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Upload an avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Change your password" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Change e-mail handling" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Design your profile" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Other" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Other options" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Other" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Untitled page" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Primary site navigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Change your e-mail, avatar, password, profile" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connect to services" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Connect" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Change site configuration" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invite" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logout from the site" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logout" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Create an account" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Register" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Login" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4785,73 +4823,87 @@ msgstr "Search" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Site notice" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Local views" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Page notice" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Secondary site navigation" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Help" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "About" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "F.A.Q." -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Source" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contact" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Badge" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "StatusNet software licence" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is a microblogging service." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4862,39 +4914,50 @@ msgstr "" "s, available under the [GNU Affero General Public Licence](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Site content license" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "After" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Before" @@ -5568,7 +5631,8 @@ msgstr "Groups with most posts" msgid "Tags in %s group's notices" msgstr "Tags in %s group's notices" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "This page is not available in a media type you accept" @@ -5870,7 +5934,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "from" @@ -5995,48 +6059,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "in context" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Repeated by" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Notice repeated" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index aa477f4d80..648afdc8ca 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:11+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:27+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -106,7 +106,7 @@ msgstr "No existe tal página" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -120,7 +120,8 @@ msgstr "%1$s y sus amistades, 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -187,8 +188,10 @@ msgstr "" msgid "You and friends" msgstr "Tú y tus amistades" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!" @@ -204,13 +207,13 @@ msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -250,7 +253,7 @@ msgstr "No se pudo actualizar el usuario." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "El usuario no tiene un perfil." @@ -262,7 +265,7 @@ msgstr "No se pudo guardar el perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -495,12 +498,14 @@ msgstr "Grupos de %s" msgid "%1$s groups %2$s is a member of." msgstr "%s es miembro de los grupos" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupos %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "Grupos en %s" @@ -561,7 +566,7 @@ msgid "The request token %s has been denied and revoked." msgstr "El token de solicitud %2 ha sido denegado y revocado." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -588,7 +593,8 @@ msgstr "" "permiso para %3$s 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 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Cuenta" @@ -600,8 +606,9 @@ msgstr "Cuenta" msgid "Nickname" msgstr "Usuario" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Contraseña" @@ -736,8 +743,9 @@ msgstr "Ningún tamaño." msgid "Invalid size." msgstr "Tamaño inválido." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Imagen" @@ -748,7 +756,7 @@ msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usuario sin perfil coincidente." @@ -768,7 +776,7 @@ msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Borrar" @@ -905,16 +913,18 @@ msgstr "Código de confirmación no encontrado." msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación no es para ti!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tipo de dirección %s desconocida" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Esa dirección ya fue confirmada." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -922,16 +932,16 @@ msgstr "Esa dirección ya fue confirmada." msgid "Couldn't update user." msgstr "No se pudo actualizar el usuario." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "No se pudo eliminar la confirmación de correo electrónico." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Confirmar la dirección" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "La dirección \"%s\" fue confirmada para tu cuenta." @@ -960,7 +970,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1021,7 +1031,7 @@ msgstr "¿Estás seguro de que quieres eliminar este aviso?" msgid "Do not delete this notice" msgstr "No eliminar este mensaje" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Borrar este aviso" @@ -1049,54 +1059,56 @@ msgstr "" msgid "Delete this user" msgstr "Borrar este usuario" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Diseño" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Configuración de diseño de este sitio StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "URL de logotipo inválido." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Tema no disponible" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Cambiar logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logo del sitio" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Cambiar el tema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Tema del sitio" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Tema para el sitio." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Cambiar la imagen de fondo" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Fondo" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1105,55 +1117,57 @@ msgstr "" "Puedes subir una imagen de fondo para el sitio. El tamaño máximo de archivo " "es %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Activado" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Desactivado" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activar o desactivar la imagen de fondo." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Imagen de fondo en mosaico" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Cambiar colores" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Contenido" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Vínculos" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Utilizar los valores predeterminados" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaurar los diseños predeterminados" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Volver a los valores predeterminados" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1165,7 +1179,7 @@ msgstr "Volver a los valores predeterminados" msgid "Save" msgstr "Guardar" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Guardar el diseño" @@ -1759,13 +1773,15 @@ msgstr "Convertir en administrador" msgid "Make this user an admin" msgstr "Convertir a este usuario en administrador" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "línea temporal de %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "¡Actualizaciones de miembros de %1$s en %2$s!" @@ -1795,7 +1811,7 @@ msgstr "" "encuentras un grupo que te guste? ¡Intenta [buscar otro](%%%%action." "groupsearch%%%%) o [crea tú uno!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crear un nuevo grupo" @@ -3136,8 +3152,9 @@ msgid "Invalid username or password." msgstr "Usuario o contraseña inválidos." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Con este formulario puedes crear una nueva cuenta. Después podrás publicar " @@ -3157,8 +3174,9 @@ msgstr "6 o más caracters. Requerido." msgid "Same as password above. Required." msgstr "Igual a la contraseña de arriba. Requerida" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Correo electrónico" @@ -3296,7 +3314,7 @@ msgstr "No puedes repetir tus propios mensajes." msgid "You already repeated that notice." msgstr "Ya has repetido este mensaje." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Repetido" @@ -4299,7 +4317,8 @@ msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4462,27 +4481,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "¡Disfruta de tu perrito caliente!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s grupos, página %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Buscar más grupos" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s no es miembro de ningún grupo." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Intenta [buscar gupos](%%action.groupsearch%%) y unirte a ellos." -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" @@ -4542,7 +4564,8 @@ msgstr "" msgid "Plugins" msgstr "Complementos" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Versión" @@ -4698,221 +4721,251 @@ msgstr "No se pudo configurar la membresía del grupo." msgid "Could not save local group info." msgstr "No se ha podido guardar la información del grupo local." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Subir una imagen." -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Cambia tu contraseña" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Cambiar el manejo del correo." -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Diseñar tu perfil" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Otro" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Otras opciones" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Otro" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Página sin título" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Navegación de sitio primario" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal y línea temporal de amistades" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, imagen, contraseña, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conectar a los servicios" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Conectarse" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Cambiar la configuración del sitio" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amistades y compañeros a unirse a tí en %s" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Cerrar sesión en el sitio" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Cerrar Sesión" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear una cuenta" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registrarse" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar sesión en el sitio" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "¡Ayúdame!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Ayuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso de sitio" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Vistas locales" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Aviso de página" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Ayuda" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Acerca de" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Preguntas Frecuentes" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "TOS" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privacidad" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Fuente" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Ponerse en contacto" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Insignia" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblogueo." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4923,42 +4976,53 @@ msgstr "" "disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licencia de contenido del sitio" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "El contenido y datos de %1$s son privados y confidenciales." -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Copyright del contenido y los datos de%1$s. Todos los derechos reservados." -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 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." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Paginación" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Después" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Antes" @@ -5644,7 +5708,8 @@ msgstr "Grupos con más publicaciones" msgid "Tags in %s group's notices" msgstr "Tags en avisos del grupo %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta página no está disponible en el tipo de medio que aceptas." @@ -5953,7 +6018,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "desde" @@ -6085,48 +6150,52 @@ msgstr "" "Lo sentimos, pero geolocalizarte está tardando más de lo esperado. Por " "favor, inténtalo más tarde." +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "E" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "W" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "E" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "W" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "en" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "en contexto" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Repetido por" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Responder este aviso." -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Aviso repetido" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 17b8d6033c..2390c6b422 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-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:23+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:33+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title @@ -105,7 +105,7 @@ msgstr "چنین صفحه‌ای وجود ندارد" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -119,7 +119,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,8 +185,10 @@ msgstr "" msgid "You and friends" msgstr "شما و دوستان" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "به روز رسانی از %1$ و دوستان در %2$" @@ -201,13 +204,13 @@ msgstr "به روز رسانی از %1$ و دوستان در %2$" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -245,7 +248,7 @@ msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "کاربر هیچ شناس‌نامه‌ای ندارد." @@ -257,7 +260,7 @@ msgstr "نمی‌توان شناس‌نامه را ذخیره کرد." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -487,12 +490,14 @@ msgstr "گروه‌های %s" msgid "%1$s groups %2$s is a member of." msgstr "هست عضو %s گروه" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s گروه" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "گروه‌ها در %s" @@ -550,7 +555,7 @@ 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/designadminpanel.php:104 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 @@ -574,7 +579,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "حساب کاربری" @@ -586,8 +592,9 @@ msgstr "حساب کاربری" msgid "Nickname" msgstr "نام کاربری" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "گذرواژه" @@ -722,8 +729,9 @@ msgstr "بدون اندازه." msgid "Invalid size." msgstr "اندازه‌ی نادرست" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "چهره" @@ -735,7 +743,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "کاربر بدون مشخصات" @@ -756,7 +764,7 @@ msgid "Preview" msgstr "پیش‌نمایش" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "حذف" @@ -894,16 +902,18 @@ msgstr "کد تصدیق پیدا نشد." msgid "That confirmation code is not for you!" msgstr "آن کد تصدیق برای شما نیست!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "نوع نشانی نامشخص است %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "آن نشانی در حال حاضر تصدیق شده است." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -911,17 +921,17 @@ msgstr "آن نشانی در حال حاضر تصدیق شده است." msgid "Couldn't update user." msgstr "نمی‌توان کاربر را به روز کرد." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "تایید نشانی" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "نشانی «%s« برای شما تصدیق شد." @@ -953,7 +963,7 @@ msgstr "شما یک عضو این گروه نیستید." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -1017,7 +1027,7 @@ msgstr "آیا اطمینان دارید که می‌خواهید این پیا msgid "Do not delete this notice" msgstr "این پیام را پاک نکن" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -1045,54 +1055,56 @@ msgstr "" msgid "Delete this user" msgstr "حذف این کاربر" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "طرح" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "تنظیمات ظاهری برای این سایت." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "نشانی اینترنتی نشان نامعتبر است." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "پوسته در دسترس نمی‌باشد: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "تغییر نشان" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "نشان وب‌گاه" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "تغییر پوسته" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "پوستهٔ وب‌گاه" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "پوسته برای وب‌گاه" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "تغییر تصویر پیش‌زمینه" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "پیش‌زمینه" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1101,55 +1113,57 @@ msgstr "" "شما می‌توانید یک تصویر پیش‌زمینه را برای وب‌گاه بارگذاری کنید. بیشینهٔ اندازهٔ " "پرونده %1 $s است." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "روشن" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "خاموش" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "تصویر پیش‌زمینه را فعال یا غیرفعال کنید." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "تصویر پیش‌زمینهٔ موزاییکی" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "عوض‌کردن رنگ‌ها" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "محتوا" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "ستون کناری" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "متن" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "پیوندها" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "استفاده‌کردن از پیش‌فرض‌ها" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "بازگرداندن طرح‌های پیش‌فرض" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "برگشت به حالت پیش گزیده" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1161,7 +1175,7 @@ msgstr "برگشت به حالت پیش گزیده" msgid "Save" msgstr "ذخیره‌کردن" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "ذخیره‌کردن طرح" @@ -1754,13 +1768,15 @@ msgstr "مدیر شود" msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "خط زمانی %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "به روز رسانی کابران %1$s در %2$s" @@ -1790,7 +1806,7 @@ msgstr "" "برای یافتن آن [بگردید](%%%action.groupsearch%%%) یا آن را خودتان [ایجاد](%%%" "action.newgroup%%%) کنید." -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "یک گروه جدید بساز" @@ -3085,7 +3101,7 @@ msgstr "نام کاربری یا کلمه ی عبور نا معتبر." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3101,8 +3117,9 @@ msgstr "۶ کاراکتر یا بیشتر نیاز است." msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "پست الکترونیکی" @@ -3219,7 +3236,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی msgid "You already repeated that notice." msgstr "شما قبلا آن آگهی را تکرار کردید." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "" @@ -4187,7 +4204,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" @@ -4339,27 +4357,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "از هات داگ خود لذت ببرید!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "اعضای گروه %s، صفحهٔ %d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "جستجو برای گروه های بیشتر" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "به روز رسانی‌های %1$s در %2$s" @@ -4407,7 +4428,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "شخصی" @@ -4567,163 +4589,179 @@ msgstr "" msgid "Could not save local group info." msgstr "نمی‌توان شناس‌نامه را ذخیره کرد." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "تنضبمات پروفيلتان را تغیر دهید" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "یک آواتار ارسال کنید" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "کلمه ی عبور خود را تغییر دهید" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "تغیر تنظیمات ایمل ." -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "پروفایل خود را طراحی کنید" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "دیگر" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "انتخابات دیگر" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "دیگر" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%s گروه %s را ترک کرد." -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "صفحه ی بدون عنوان" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "شخصی" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "آدرس ایمیل، آواتار، کلمه ی عبور، پروفایل خود را تغییر دهید" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "متصل شدن به خدمات" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "وصل‌شدن" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "تغییر پیکربندی سایت" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "مدیر" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr " به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "دعوت‌کردن" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "خارج شدن از سایت ." -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "خروج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "یک حساب کاربری بسازید" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "ثبت نام" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "ورود به وب‌گاه" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ورود" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "به من کمک کنید!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "کمک" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "جستجو برای شخص با متن" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4731,71 +4769,85 @@ msgstr "جست‌وجو" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "خبر سایت" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "دید محلی" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "خبر صفحه" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "کمک" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "دربارهٔ" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "سوال‌های رایج" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "خصوصی" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "منبع" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "تماس" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "StatusNet مجوز نرم افزار" -#: lib/action.php:803 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4803,39 +4855,50 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "مجوز محتویات سایت" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "صفحه بندى" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "بعد از" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "قبل از" @@ -5520,7 +5583,8 @@ msgstr "گروه های با پست های بیشتر" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5811,7 +5875,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "از" @@ -5941,48 +6005,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "در" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "در زمینه" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "تکرار از" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "به این آگهی جواب دهید" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "جواب دادن" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "آگهی تکرار شد" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index e834d64379..6d34dbe3d2 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:20+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:30+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -111,7 +111,7 @@ msgstr "Sivua ei ole." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -125,7 +125,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -190,8 +191,10 @@ msgstr "" msgid "You and friends" msgstr "Sinä ja kaverit" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" @@ -207,13 +210,13 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -252,7 +255,7 @@ msgstr "Ei voitu päivittää käyttäjää." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Käyttäjällä ei ole profiilia." @@ -265,7 +268,7 @@ msgstr "Ei voitu tallentaa profiilia." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -505,12 +508,14 @@ msgstr "Käyttäjän %s ryhmät" msgid "%1$s groups %2$s is a member of." msgstr "Ryhmät, joiden jäsen %s on" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Käyttäjän %s ryhmät" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, fuzzy, php-format msgid "groups on %s" msgstr "Ryhmän toiminnot" @@ -572,7 +577,7 @@ 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/designadminpanel.php:104 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 @@ -596,7 +601,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Käyttäjätili" @@ -608,8 +614,9 @@ msgstr "Käyttäjätili" msgid "Nickname" msgstr "Tunnus" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Salasana" @@ -747,8 +754,9 @@ msgstr "Kokoa ei ole." msgid "Invalid size." msgstr "Koko ei kelpaa." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Kuva" @@ -759,7 +767,7 @@ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Käyttäjälle ei löydy profiilia" @@ -780,7 +788,7 @@ msgid "Preview" msgstr "Esikatselu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Poista" @@ -915,16 +923,18 @@ msgstr "Vahvistuskoodia ei löytynyt." msgid "That confirmation code is not for you!" msgstr "Tämä vahvistuskoodi ei ole sinun!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tuntematon osoitetyyppi %s " -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Tämä osoite on jo vahvistettu." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -932,17 +942,17 @@ msgstr "Tämä osoite on jo vahvistettu." msgid "Couldn't update user." msgstr "Ei voitu päivittää käyttäjää." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Ei voitu poistaa sähköpostivahvistusta." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Vahvista osoite" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." @@ -975,7 +985,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -1036,7 +1046,7 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?" msgid "Do not delete this notice" msgstr "Älä poista tätä päivitystä" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -1064,116 +1074,120 @@ msgstr "" msgid "Delete this user" msgstr "Poista tämä päivitys" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Ulkoasu" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Ulkoasuasetukset tälle StatusNet palvelulle." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "Koko ei kelpaa." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Pikaviestin ei ole käytettävissä." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "Vaihda salasanasi" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "Kutsu" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Vaihda" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Palvelun ilmoitus" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 #, fuzzy msgid "Theme for the site." msgstr "Kirjaudu ulos palvelusta" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Vaihda tautakuva" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Tausta" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "On" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Off" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Vaihda väriä" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Sisältö" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "Haku" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Teksti" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Linkit" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Käytä oletusasetuksia" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1185,7 +1199,7 @@ msgstr "" msgid "Save" msgstr "Tallenna" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1792,13 +1806,15 @@ 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:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s aikajana" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, 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!" @@ -1823,7 +1839,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Luo uusi ryhmä" @@ -3177,7 +3193,7 @@ msgstr "Käyttäjätunnus tai salasana ei kelpaa." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3195,8 +3211,9 @@ msgstr "6 tai useampia merkkejä. Pakollinen." msgid "Same as password above. Required." msgstr "Sama kuin ylläoleva salasana. Pakollinen." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Sähköposti" @@ -3341,7 +3358,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." msgid "You already repeated that notice." msgstr "Sinä olet jo estänyt tämän käyttäjän." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "Luotu" @@ -4338,7 +4355,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiili" @@ -4510,27 +4528,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Ryhmän %s jäsenet, sivu %d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Hae lisää ryhmiä" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Sinä et kuulu tähän ryhmään." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -4578,7 +4599,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Omat" @@ -4744,165 +4766,181 @@ msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." msgid "Could not save local group info." msgstr "Tilausta ei onnistuttu tallentamaan." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Vaihda profiiliasetuksesi" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Lataa kuva" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Vaihda salasanasi" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "Käyttäjän profiili" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Muut" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Muita asetuksia" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Muut" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s (%2$s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Nimetön sivu" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Omat" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Yhdistä" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ensisijainen sivunavigointi" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Ylläpito" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Kutsu" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Kirjaudu ulos palvelusta" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Luo uusi käyttäjätili" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rekisteröidy" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kirjaudu sisään palveluun" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Kirjaudu sisään" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Auta minua!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ohjeet" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Hae ihmisiä tai tekstiä" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4910,74 +4948,88 @@ msgstr "Haku" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Palvelun ilmoitus" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Paikalliset näkymät" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Sivuilmoitus" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Ohjeet" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Tietoa" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "UKK" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Yksityisyys" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Lähdekoodi" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Ota yhteyttä" -#: lib/action.php:770 +#: lib/action.php:784 #, fuzzy msgid "Badge" msgstr "Tönäise" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** on mikroblogipalvelu. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4988,40 +5040,51 @@ msgstr "" "versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Sivutus" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Myöhemmin" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Aiemmin" @@ -5730,7 +5793,8 @@ msgstr "Ryhmät, joissa eniten päivityksiä" msgid "Tags in %s group's notices" msgstr "Tagit ryhmän %s päivityksissä" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä." @@ -6034,7 +6098,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 #, fuzzy msgid "from" msgstr " lähteestä " @@ -6164,51 +6228,55 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "Ei" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "Ei sisältöä!" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "Luotu" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Vastaus" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Päivitys on poistettu." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 9ad079a651..cb8b5c634b 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:26+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:36+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -85,9 +85,8 @@ msgstr "Enregistrer" #. 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 -#, fuzzy msgid "No such page." -msgstr "Page non trouvée" +msgstr "Page non trouvée." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -107,7 +106,7 @@ msgstr "Page non trouvée" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -121,7 +120,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -189,8 +189,10 @@ msgstr "" msgid "You and friends" msgstr "Vous et vos amis" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!" @@ -206,13 +208,13 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -235,13 +237,12 @@ msgid "This method requires a POST." msgstr "Ce processus requiert un POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "Vous devez spécifier un paramètre « device » avec une des valeurs suivantes : " -"sms, im, none" +"sms, im, none." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -252,7 +253,7 @@ msgstr "Impossible de mettre à jour l’utilisateur." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Aucun profil ne correspond à cet utilisateur." @@ -264,7 +265,7 @@ msgstr "Impossible d’enregistrer le profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -443,9 +444,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Trop d’alias ! Maximum %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Alias invalide : « %s »" +msgstr "Alias invalide : « %s »." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -461,9 +462,8 @@ msgstr "L’alias ne peut pas être le même que le pseudo." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "Groupe non trouvé !" +msgstr "Groupe non trouvé." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -499,12 +499,14 @@ msgstr "Groupes de %s" msgid "%1$s groups %2$s is a member of." msgstr "Groupes de %1$s dont %2$s est membre." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Groupes de %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "groupes sur %s" @@ -567,7 +569,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Le jeton de connexion %s a été refusé et révoqué." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -596,7 +598,8 @@ msgstr "" "devriez donner l’accès à votre compte %4$s qu’aux tiers à qui vous faites " "confiance." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Compte" @@ -608,8 +611,9 @@ msgstr "Compte" msgid "Nickname" msgstr "Pseudo" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Mot de passe" @@ -744,8 +748,9 @@ msgstr "Aucune taille" msgid "Invalid size." msgstr "Taille incorrecte." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -758,7 +763,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utilisateur sans profil correspondant." @@ -778,7 +783,7 @@ msgid "Preview" msgstr "Aperçu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Supprimer" @@ -898,9 +903,9 @@ msgstr "Débloquer cet utilisateur" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Poster sur " +msgstr "Poster sur %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -914,16 +919,18 @@ msgstr "Code de confirmation non trouvé." msgid "That confirmation code is not for you!" msgstr "Ce code de confirmation n’est pas pour vous !" -#: actions/confirmaddress.php:90 -#, fuzzy, php-format +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format msgid "Unrecognized address type %s." -msgstr "Type d’adresse non reconnu : %s" +msgstr "Type d’adresse non reconnu : %s." -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Cette adresse a déjà été confirmée." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -931,16 +938,16 @@ msgstr "Cette adresse a déjà été confirmée." msgid "Couldn't update user." msgstr "Impossible de mettre à jour l’utilisateur." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Impossible de supprimer le courriel de confirmation." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Confirmer l’adresse" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adresse \"%s\" a été validée pour votre compte." @@ -969,7 +976,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1030,7 +1037,7 @@ msgstr "Voulez-vous vraiment supprimer cet avis ?" msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -1058,54 +1065,56 @@ msgstr "" msgid "Delete this user" msgstr "Supprimer cet utilisateur" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Conception" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Paramètres de conception pour ce site StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "URL du logo invalide." -#: actions/designadminpanel.php:279 -#, fuzzy, php-format +#: actions/designadminpanel.php:280 +#, php-format msgid "Theme not available: %s." -msgstr "Le thème n’est pas disponible : %s" +msgstr "Le thème n’est pas disponible : %s." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Modifier le logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logo du site" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Modifier le thème" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Thème du site" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Thème pour le site." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Changer l’image d’arrière plan" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Arrière plan" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1114,55 +1123,57 @@ msgstr "" "Vous pouvez importer une image d’arrière plan pour ce site. La taille " "maximale du fichier est de %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Activé" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Désactivé" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activer ou désactiver l’image d’arrière plan." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Répéter l’image d’arrière plan" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Modifier les couleurs" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Contenu" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barre latérale" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Texte" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Liens" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Utiliser les valeurs par défaut" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaurer les conceptions par défaut" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Revenir aux valeurs par défaut" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1174,7 +1185,7 @@ msgstr "Revenir aux valeurs par défaut" msgid "Save" msgstr "Enregistrer" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Sauvegarder la conception" @@ -1593,9 +1604,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Le service distant utilise une version inconnue du protocole OMB." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Erreur lors de la mise à jour du profil distant" +msgstr "Erreur lors de la mise à jour du profil distant." #: actions/getfile.php:79 msgid "No such file." @@ -1765,13 +1775,15 @@ msgstr "Faire un administrateur" msgid "Make this user an admin" msgstr "Faire de cet utilisateur un administrateur" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Activité de %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Mises à jour des membres de %1$s dans %2$s !" @@ -1802,7 +1814,7 @@ msgstr "" "intéresse ? Essayez d’en [rechercher un](%%%%action.groupsearch%%%%) ou de " "[créer le vôtre !](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Créer un nouveau groupe" @@ -1974,10 +1986,10 @@ msgid "Invites have been disabled." msgstr "Les invitations ont été désactivées." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." msgstr "" -"Vous devez ouvrir une session pour inviter d’autres utilisateurs dans %s" +"Vous devez ouvrir une session pour inviter d’autres utilisateurs dans %s." #: actions/invite.php:72 #, php-format @@ -2217,9 +2229,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Impossible de rendre %1$s administrateur du groupe %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Aucun statut actuel" +msgstr "Aucun statut actuel." #: actions/newapplication.php:52 msgid "New Application" @@ -2386,9 +2397,9 @@ msgid "You are not a user of that application." msgstr "Vous n’êtes pas un utilisateur de cette application." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "Impossible d’annuler l’accès de l’application : " +msgstr "Impossible d’annuler l’accès de l’application %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2401,9 +2412,8 @@ msgstr "" "applications " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "L’avis n’a pas de profil" +msgstr "L’avis n’a pas de profil." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2412,15 +2422,15 @@ msgstr "Statut de %1$s sur %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "type de contenu " +msgstr "Type de contenu %s non supporté." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s." #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 @@ -2573,24 +2583,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Paramètres de chemin et serveur pour ce site StatusNet." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Dossier des thème non lisible : %s" +msgstr "Dossier des thème non lisible : %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Dossier des avatars non inscriptible : %s" +msgstr "Dossier des avatars non inscriptible : %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Dossier des arrière plans non inscriptible : %s" +msgstr "Dossier des arrière plans non inscriptible : %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Dossier des paramètres régionaux non lisible : %s" +msgstr "Dossier des paramètres régionaux non lisible : %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2731,9 +2741,9 @@ msgid "People search" msgstr "Recherche de personnes" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "Cette marque est invalide : %s" +msgstr "Cette marque est invalide : %s." #: actions/peopletag.php:142 #, php-format @@ -2741,9 +2751,8 @@ 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:95 -#, fuzzy msgid "Invalid notice content." -msgstr "Contenu de l’avis invalide" +msgstr "Contenu de l’avis invalide." #: actions/postnotice.php:101 #, php-format @@ -2890,9 +2899,9 @@ msgid "Settings saved." msgstr "Préférences enregistrées." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Au-delà de la limite de page (%s)" +msgstr "Au-delà de la limite de page (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3157,8 +3166,9 @@ msgid "Invalid username or password." msgstr "Identifiant ou mot de passe incorrect." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Avec ce formulaire vous pouvez créer un nouveau compte. Vous pourrez ensuite " @@ -3177,8 +3187,9 @@ msgstr "6 caractères ou plus. Requis." msgid "Same as password above. Required." msgstr "Identique au mot de passe ci-dessus. Requis." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Courriel" @@ -3193,13 +3204,14 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nom plus long, votre \"vrai\" nom de préférence" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -" à l’exception de ces données personnelles : mot de passe, adresse e-mail, " -"adresse de messagerie instantanée, numéro de téléphone." +"Mon texte et mes fichiers sont disponibles sous %s à l’exception de ces " +"données personnelles : mot de passe, adresse électronique, adresse de " +"messagerie instantanée, numéro de téléphone." #: actions/register.php:542 #, php-format @@ -3317,7 +3329,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis." msgid "You already repeated that notice." msgstr "Vous avez déjà repris cet avis." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Repris" @@ -3819,7 +3831,6 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "La limite minimale de texte est de 0 caractères (illimité)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." msgstr "La limite de doublon doit être d’une seconde ou plus." @@ -3912,9 +3923,8 @@ msgid "Unable to save site notice." msgstr "Impossible d'enregistrer l'avis du site." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." -msgstr "La longueur maximale pour l'avis du site est de 255 caractères" +msgstr "La longueur maximale pour l'avis du site est de 255 caractères." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -4292,9 +4302,8 @@ msgid "User is not silenced." msgstr "L’utilisateur n’est pas réduit au silence." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." -msgstr "Aucune identité de profil dans la requête." +msgstr "Aucun identifiant de profil dans la requête." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -4331,7 +4340,8 @@ msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4497,29 +4507,32 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Bon appétit !" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Groupes %1$s, page %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Rechercher pour plus de groupes" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s n’est pas membre d’un groupe." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, 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:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" @@ -4579,7 +4592,8 @@ msgstr "" msgid "Plugins" msgstr "Extensions" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Version" @@ -4733,221 +4747,251 @@ msgstr "Impossible d’établir l’inscription au groupe." msgid "Could not save local group info." msgstr "Impossible d’enregistrer les informations du groupe local." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Ajouter un avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Modifier votre mot de passe" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Modifier le traitement des courriels" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Concevez votre profil" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Autres " - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Autres options" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Autres " + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Page sans nom" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Navigation primaire du site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Personnel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifier votre adresse électronique, avatar, mot de passe, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Se connecter aux services" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Connecter" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifier la configuration du site" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Administrer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre sur %s" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Fermer la session" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Déconnexion" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Créer un compte" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "S'inscrire" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Connexion" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "À l’aide !" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Aide" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Rechercher" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Notice du site" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Vues locales" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Avis de la page" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Aide" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "À propos" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "CGU" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Confidentialité" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Source" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contact" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Insigne" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** est un service de microblogging qui vous est proposé par " "[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** est un service de micro-blogging." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4958,43 +5002,55 @@ 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:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licence du contenu du site" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, 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:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, 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:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 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." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" +"Tous les contenus %1$s et les données sont disponibles sous la licence %2$s." -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Après" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Avant" @@ -5724,7 +5780,8 @@ msgstr "Groupes avec le plus d’éléments publiés" msgid "Tags in %s group's notices" msgstr "Marques dans les avis du groupe %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" "Cette page n’est pas disponible dans un des formats que vous avez autorisés." @@ -5907,9 +5964,10 @@ msgstr "Confirmation SMS" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "Numéro de téléphone en attente de confirmation." +msgstr "" +"%s : confirmez que vous possédez ce numéro de téléphone grâce à ce code :" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 @@ -6038,6 +6096,9 @@ msgid "" "\n" "\t%s" msgstr "" +"La conversation complète peut être lue ici :\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format @@ -6071,6 +6132,29 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%1$s (@%9$s) vient de soumettre un avis à votre attention (un « @-reply ») " +"sur %2$s.\n" +"\n" +"L'avis est ici :\n" +"\n" +"%3$s\n" +"\n" +"Il dit :\n" +"\n" +"%4$s\n" +"\n" +"%5$sVous pouvez répondre ici :\n" +"\n" +"%6$s\n" +"\n" +"La liste des @-replies qui vous sont destinées est ici :\n" +"\n" +"%7$s\n" +"\n" +"Cordialement,\n" +"%2$s\n" +"\n" +"P.S. Vous pouvez désactiver ces notifications électroniques ici : %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6085,7 +6169,7 @@ msgstr "" "pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent " "vous envoyer des messages destinés à vous seul(e)." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "de" @@ -6216,48 +6300,52 @@ msgstr "" "Désolé, l’obtention de votre localisation prend plus de temps que prévu. " "Veuillez réessayer plus tard." +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "E" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "O" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "E" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "O" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "chez" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "dans le contexte" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Repris par" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Répondre à cet avis" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Répondre" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Avis repris" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 4dbaf1e98c..f56e0a5efb 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-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:29+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:39+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -110,7 +110,7 @@ msgstr "Non existe a etiqueta." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -124,7 +124,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,8 +185,10 @@ msgstr "" msgid "You and friends" msgstr "%s e amigos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións dende %1$s e amigos en %2$s!" @@ -201,13 +204,13 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -246,7 +249,7 @@ msgstr "Non se puido actualizar o usuario." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "O usuario non ten perfil." @@ -259,7 +262,7 @@ msgstr "Non se puido gardar o perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -501,12 +504,14 @@ msgstr "Usuarios" msgid "%1$s groups %2$s is a member of." msgstr "%1s non é unha orixe fiable." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, fuzzy, php-format msgid "groups on %s" msgstr "Outras opcions" @@ -566,7 +571,7 @@ 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/designadminpanel.php:104 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 @@ -590,7 +595,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 #, fuzzy msgid "Account" msgstr "Sobre" @@ -603,8 +609,9 @@ msgstr "Sobre" msgid "Nickname" msgstr "Alcume" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Contrasinal" @@ -744,8 +751,9 @@ msgstr "Sen tamaño." msgid "Invalid size." msgstr "Tamaño inválido." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -756,7 +764,7 @@ msgstr "Podes actualizar a túa información do perfil persoal aquí" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Usuario sen un perfil que coincida." @@ -778,7 +786,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 #, fuzzy msgid "Delete" msgstr "eliminar" @@ -923,16 +931,18 @@ msgstr "Confirmation code not found." msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación non é para ti!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tipo de enderezo %s non recoñecido" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Esa dirección xa foi confirmada." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -940,17 +950,17 @@ msgstr "Esa dirección xa foi confirmada." msgid "Couldn't update user." msgstr "Non se puido actualizar o usuario." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Non se pode eliminar a confirmación de email." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Confirmar enderezo" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "A dirección \"%s\" xa foi confirmada para a túa conta." @@ -983,7 +993,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:1221 +#: lib/action.php:1253 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." @@ -1047,7 +1057,7 @@ msgstr "Estas seguro que queres eliminar este chío?" msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 #, fuzzy msgid "Delete this notice" msgstr "Eliminar chío" @@ -1078,118 +1088,122 @@ msgstr "" msgid "Delete this user" msgstr "Eliminar chío" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "Tamaño inválido." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "Cambiar contrasinal" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "Invitar" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Modificado" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Novo chío" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Cambiar contrasinal" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "Conectar" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "Buscar" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Lista" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1201,7 +1215,7 @@ msgstr "" msgid "Save" msgstr "Gardar" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1824,13 +1838,15 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Liña de tempo de %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -1855,7 +1871,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Crear nova conta" @@ -3215,7 +3231,7 @@ msgstr "Usuario ou contrasinal inválidos." #: actions/register.php:343 #, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Neste formulario podes crear unha conta de usuario. Logo poderás publicar " @@ -3236,8 +3252,9 @@ msgstr "6 ou máis caracteres. Requerido." msgid "Same as password above. Required." msgstr "A mesma contrasinal que arriba. Requerido." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Correo Electrónico" @@ -3380,7 +3397,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza." msgid "You already repeated that notice." msgstr "Xa bloqueaches a este usuario." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "Crear" @@ -4390,7 +4407,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4564,27 +4582,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Tódalas subscricións" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "%1s non é unha orixe fiable." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -4632,7 +4653,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Persoal" @@ -4801,93 +4823,106 @@ msgstr "Non se pode gardar a subscrición." msgid "Could not save local group info." msgstr "Non se pode gardar a subscrición." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Configuración de perfil" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 #, fuzzy msgid "Upload an avatar" msgstr "Acounteceu un fallo ó actualizar o avatar." -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Cambiar contrasinal" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Cambiar a xestión de email" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "O usuario non ten perfil." -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Outros" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Outras opcions" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Outros" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s (%2$s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Navegación de subscricións" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -4895,69 +4930,72 @@ msgstr "" "Emprega este formulario para invitar ós teus amigos e colegas a empregar " "este servizo." -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear nova conta" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rexistrar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Axuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4965,76 +5003,90 @@ msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Novo chío" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 #, fuzzy msgid "Page notice" msgstr "Novo chío" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de subscricións" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Axuda" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Sobre" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Preguntas frecuentes" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Fonte" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contacto" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5045,41 +5097,52 @@ msgstr "" "%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "Atopar no contido dos chíos" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 #, fuzzy msgid "After" msgstr "« Despois" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 #, fuzzy msgid "Before" msgstr "Antes »" @@ -5831,7 +5894,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" @@ -6183,7 +6247,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 #, fuzzy msgid "from" msgstr " dende " @@ -6316,53 +6380,57 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "No" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "Sen contido!" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "Crear" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply to this notice" msgstr "Non se pode eliminar este chíos." -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 #, fuzzy msgid "Reply" msgstr "contestar" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Chío publicado" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 9cc04c93c1..1f8fa91280 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:32+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:42+0000\n" "Language-Team: Galician\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: out-statusnet\n" @@ -102,7 +102,7 @@ msgstr "Non existe tal páxina" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -116,7 +116,8 @@ msgstr "%1$s e amigos, páxina %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 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,8 +184,10 @@ msgstr "" msgid "You and friends" msgstr "Vostede e mailos seus amigos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións de %1$s e amigos en %2$s!" @@ -200,13 +203,13 @@ msgstr "Actualizacións de %1$s e amigos en %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -246,7 +249,7 @@ msgstr "Non se puido actualizar o usuario." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "O usuario non ten perfil." @@ -258,7 +261,7 @@ msgstr "Non se puido gardar o perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -493,12 +496,14 @@ msgstr "Os grupos de %s" msgid "%1$s groups %2$s is a member of." msgstr "Grupos de %1$s aos que pertence %2$s." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "grupos %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "grupos en %s" @@ -558,7 +563,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Denegouse e revogouse a ficha da solicitude %s." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -585,7 +590,8 @@ msgstr "" "%3$s os datos da súa conta %4$s. Só debería permitir o " "acceso á súa conta %4$s a xente de confianza." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Conta" @@ -597,8 +603,9 @@ msgstr "Conta" msgid "Nickname" msgstr "Alcume" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Contrasinal" @@ -733,8 +740,9 @@ msgstr "Sen tamaño." msgid "Invalid size." msgstr "Tamaño non válido." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -747,7 +755,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "O usuario non ten perfil." @@ -767,7 +775,7 @@ msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Borrar" @@ -903,16 +911,18 @@ msgstr "Non se atopou o código de confirmación." msgid "That confirmation code is not for you!" msgstr "Ese código de confirmación non é para vostede!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Non se recoñeceu o tipo de enderezo %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Ese enderezo xa se confirmou." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -920,16 +930,16 @@ msgstr "Ese enderezo xa se confirmou." msgid "Couldn't update user." msgstr "Non se puido actualizar o usuario." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Non se puido borrar a confirmación por correo electrónico." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Confirmar o enderezo" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Confirmouse o enderezo \"%s\" para a súa conta." @@ -958,7 +968,7 @@ msgstr "Non é o dono desa aplicación." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -1019,7 +1029,7 @@ msgstr "Está seguro de querer borrar esta nota?" msgid "Do not delete this notice" msgstr "Non borrar esta nota" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Borrar esta nota" @@ -1047,54 +1057,56 @@ msgstr "" msgid "Delete this user" msgstr "Borrar o usuario" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Deseño" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Configuración do deseño deste sitio StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "URL do logo incorrecto." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "O tema visual non está dispoñible: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Cambiar o logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logo do sitio" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Cambar o tema visual" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Tema visual do sitio" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Tema visual para o sitio." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Cambiar a imaxe de fondo" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Fondo" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1103,55 +1115,57 @@ msgstr "" "Pode cargar unha imaxe de fondo para o sitio. O tamaño máximo para o " "ficheiro é de %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Activado" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Desactivado" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activar ou desactivar a imaxe de fondo." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Imaxe de fondo en mosaico" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Cambiar as cores" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Contido" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Ligazóns" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Utilizar os valores por defecto" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaurar o deseño por defecto" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Volver ao deseño por defecto" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1163,7 +1177,7 @@ msgstr "Volver ao deseño por defecto" msgid "Save" msgstr "Gardar" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Gardar o deseño" @@ -1757,13 +1771,15 @@ msgstr "Converter en administrador" msgid "Make this user an admin" msgstr "Converter a este usuario en administrador" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Liña do tempo de %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizacións de membros de %1$s en %2$s!" @@ -1793,7 +1809,7 @@ msgstr "" "un grupo que lle guste? Probe a [buscar un](%%%%action.groupsearch%%%%) ou " "[crear un pola súa conta!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crear un grupo novo" @@ -3126,7 +3142,7 @@ msgstr "" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3142,8 +3158,9 @@ msgstr "" msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "" @@ -3256,7 +3273,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "" @@ -4189,7 +4206,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" @@ -4341,27 +4359,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4409,7 +4430,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "" @@ -4557,219 +4579,249 @@ msgstr "" msgid "Could not save local group info." msgstr "" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4777,39 +4829,50 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "" @@ -5476,7 +5539,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5760,7 +5824,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "" @@ -5885,48 +5949,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 38d1638b8c..aec735028e 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:35+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:46+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -107,7 +107,7 @@ msgstr "אין הודעה כזו." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -121,7 +121,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -181,8 +182,10 @@ msgstr "" msgid "You and friends" msgstr "%s וחברים" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -198,13 +201,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -243,7 +246,7 @@ msgstr "עידכון המשתמש נכשל." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "למשתמש אין פרופיל." @@ -256,7 +259,7 @@ msgstr "שמירת הפרופיל נכשלה." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -494,12 +497,14 @@ msgstr "פרופיל" msgid "%1$s groups %2$s is a member of." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "" @@ -559,7 +564,7 @@ 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/designadminpanel.php:104 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 @@ -583,7 +588,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 #, fuzzy msgid "Account" msgstr "אודות" @@ -596,8 +602,9 @@ msgstr "אודות" msgid "Nickname" msgstr "כינוי" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "סיסמה" @@ -736,8 +743,9 @@ msgstr "אין גודל." msgid "Invalid size." msgstr "גודל לא חוקי." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "תמונה" @@ -748,7 +756,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "למשתמש אין פרופיל." @@ -770,7 +778,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 #, fuzzy msgid "Delete" msgstr "מחק" @@ -913,16 +921,18 @@ msgstr "קוד האישור לא נמצא." msgid "That confirmation code is not for you!" msgstr "קוד האישור הזה אינו מיועד לך!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "סוג לא מזוהה של כתובת %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "כתובת זו כבר אושרה." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -930,17 +940,17 @@ msgstr "כתובת זו כבר אושרה." msgid "Couldn't update user." msgstr "עידכון המשתמש נכשל." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "אשר כתובת" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "הכתובת \"%s\" אושרה עבור חשבונך." @@ -973,7 +983,7 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -1033,7 +1043,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "אין הודעה כזו." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1063,118 +1073,122 @@ msgstr "" msgid "Delete this user" msgstr "אין משתמש כזה." -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "גודל לא חוקי." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "שנה סיסמה" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "הודעה חדשה" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "שנה" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "הודעה חדשה" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "שנה סיסמה" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "התחבר" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "חיפוש" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "טקסט" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "היכנס" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1186,7 +1200,7 @@ msgstr "" msgid "Save" msgstr "שמור" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1796,13 +1810,15 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" @@ -1827,7 +1843,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "צור חשבון חדש" @@ -3129,7 +3145,7 @@ msgstr "שם המשתמש או הסיסמה לא חוקיים" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3145,8 +3161,9 @@ msgstr " לפחות 6 אותיות. שדה חובה." msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "" @@ -3268,7 +3285,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון" msgid "You already repeated that notice." msgstr "כבר נכנסת למערכת!" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "צור" @@ -4246,7 +4263,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "פרופיל" @@ -4414,27 +4432,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "כל המנויים" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4482,7 +4503,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "אישי" @@ -4646,161 +4668,177 @@ msgstr "יצירת המנוי נכשלה." msgid "Could not save local group info." msgstr "יצירת המנוי נכשלה." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 #, fuzzy msgid "Upload an avatar" msgstr "עדכון התמונה נכשל." -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "למשתמש אין פרופיל." -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "הסטטוס של %1$s ב-%2$s " -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "אישי" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "שנה סיסמה" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "נכשלה ההפניה לשרת: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "התחבר" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "הרשמות" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "גודל לא חוקי." #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "צא" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "צור חשבון חדש" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "הירשם" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "היכנס" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "עזרה" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "עזרה" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4808,76 +4846,90 @@ msgstr "חיפוש" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 #, fuzzy msgid "Page notice" msgstr "הודעה חדשה" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 #, fuzzy msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "עזרה" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "אודות" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "רשימת שאלות נפוצות" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "פרטיות" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "מקור" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "צור קשר" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** הוא שרות ביקרובלוג." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4888,41 +4940,52 @@ msgstr "" "s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "הודעה חדשה" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 #, fuzzy msgid "After" msgstr "<< אחרי" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 #, fuzzy msgid "Before" msgstr "לפני >>" @@ -5628,7 +5691,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" @@ -5922,7 +5986,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "" @@ -6053,52 +6117,56 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "לא" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "אין תוכן!" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "צור" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 #, fuzzy msgid "Reply" msgstr "הגב" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "הודעות" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 8734df5b68..d54f7577b6 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-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:37+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:50+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -103,7 +103,7 @@ msgstr "Strona njeeksistuje" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -117,7 +117,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -176,8 +177,10 @@ msgstr "" msgid "You and friends" msgstr "Ty a přećeljo" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -193,13 +196,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -236,7 +239,7 @@ msgstr "Wužiwar njeje so dał aktualizować." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Wužiwar nima profil." @@ -248,7 +251,7 @@ msgstr "Profil njeje so składować dał." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -477,12 +480,14 @@ msgstr "" msgid "%1$s groups %2$s is a member of." msgstr "" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s skupinow" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "skupiny na %s" @@ -538,7 +543,7 @@ 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/designadminpanel.php:104 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 @@ -562,7 +567,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Konto" @@ -574,8 +580,9 @@ msgstr "Konto" msgid "Nickname" msgstr "Přimjeno" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Hesło" @@ -708,8 +715,9 @@ msgstr "Žana wulkosć." msgid "Invalid size." msgstr "Njepłaćiwa wulkosć." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Awatar" @@ -721,7 +729,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Wužiwar bjez hodźaceho so profila." @@ -741,7 +749,7 @@ msgid "Preview" msgstr "Přehlad" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Zničić" @@ -874,16 +882,18 @@ msgstr "Wobkrućenski kod njenamakany." msgid "That confirmation code is not for you!" msgstr "Tutón wobkrućenski kod njeje za tebje!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Njespóznany adresowy typ %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Tuta adresa bu hižo wobkrućena." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -891,16 +901,16 @@ msgstr "Tuta adresa bu hižo wobkrućena." msgid "Couldn't update user." msgstr "" -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Adresu wobkrućić" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adresa \"%s\" bu za twoje konto wobkrućena." @@ -929,7 +939,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -985,7 +995,7 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?" msgid "Do not delete this notice" msgstr "Tutu zdźělenku njewušmórnyć" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -1011,54 +1021,56 @@ msgstr "" msgid "Delete this user" msgstr "Tutoho wužiwarja wušmórnyć" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Design" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Designowe nastajenja za tute sydło StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "Njepłaćiwy logowy URL." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Šat njesteji k dispoziciji: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Logo změnić" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logo sydła" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Šat změnić" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Šat sydła" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Šat za sydło." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Pozadkowy wobraz změnić" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Pozadk" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1066,55 +1078,57 @@ msgid "" msgstr "" "Móžeš pozadkowy wobraz za sydło nahrać. Maksimalna datajowa wulkosć je %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Zapinjeny" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Wupinjeny" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Barby změnić" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Wobsah" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Bóčnica" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Wotkazy" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Standardne hódnoty wužiwać" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Standardne designy wobnowić" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Na standard wróćo stajić" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1126,7 +1140,7 @@ msgstr "Na standard wróćo stajić" msgid "Save" msgstr "Składować" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Design składować" @@ -1699,13 +1713,15 @@ msgstr "" msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej činić" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1730,7 +1746,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Nowu skupinu wutworić" @@ -2973,7 +2989,7 @@ msgstr "Njepłaćiwe wužiwarske mjeno abo hesło." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -2989,8 +3005,9 @@ msgstr "6 abo wjace znamješkow. Trěbne." msgid "Same as password above. Required." msgstr "Jenake kaž hesło horjeka. Trěbne." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-mejl" @@ -3103,7 +3120,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować." msgid "You already repeated that notice." msgstr "Sy tutu zdźělenku hižo wospjetował." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Wospjetowany" @@ -4036,7 +4053,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4188,27 +4206,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s skupinow, strona %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4256,7 +4277,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Wersija" @@ -4404,219 +4426,249 @@ msgstr "" msgid "Could not save local group info." msgstr "Informacije wo lokalnej skupinje njedachu so składować." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Druhe" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Druhe opcije" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Druhe" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Strona bjez titula" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Wosobinski" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Wašu e-mejl, waš awatar, waše hesło, waš profil změnić" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ze słužbami zwjazać" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Zwjazać" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Sydłowu konfiguraciju změnić" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Přeprosyć" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Ze sydła wotzjewić" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Wotzjewić" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Konto załožić" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registrować" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Při sydle přizjewić" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Přizjewjenje" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomhaj!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Za ludźimi abo tekstom pytać" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Pytać" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Pomoc" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Wo" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Huste prašenja" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Priwatnosć" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Žórło" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4624,39 +4676,50 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "" @@ -5329,7 +5392,8 @@ msgstr "Skupiny z njawjace powěsćemi" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5613,7 +5677,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "wot" @@ -5738,48 +5802,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "J" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "W" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "Z" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "S" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "J" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "W" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "Z" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Wospjetowany wot" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Na tutu zdźělenku wotmołwić" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Wotmołwić" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Zdźělenka wospjetowana" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 757ec5c772..13ef76a3ee 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:40+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:53+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -101,7 +101,7 @@ msgstr "Pagina non existe" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -115,7 +115,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -182,8 +183,10 @@ msgstr "" msgid "You and friends" msgstr "Tu e amicos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualisationes de %1$s e su amicos in %2$s!" @@ -199,13 +202,13 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -245,7 +248,7 @@ msgstr "Non poteva actualisar le usator." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Le usator non ha un profilo." @@ -257,7 +260,7 @@ msgstr "Non poteva salveguardar le profilo." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -488,12 +491,14 @@ msgstr "Gruppos de %s" msgid "%1$s groups %2$s is a member of." msgstr "Gruppos del quales %s es membro" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Gruppos de %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "gruppos in %s" @@ -554,7 +559,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Le indicio de requesta %s ha essite refusate e revocate." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -581,7 +586,8 @@ msgstr "" "%3$s 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 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Conto" @@ -593,8 +599,9 @@ msgstr "Conto" msgid "Nickname" msgstr "Pseudonymo" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Contrasigno" @@ -731,8 +738,9 @@ msgstr "Nulle dimension." msgid "Invalid size." msgstr "Dimension invalide." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -744,7 +752,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usator sin profilo correspondente" @@ -764,7 +772,7 @@ msgid "Preview" msgstr "Previsualisation" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Deler" @@ -900,16 +908,18 @@ msgstr "Codice de confirmation non trovate." msgid "That confirmation code is not for you!" msgstr "Iste codice de confirmation non es pro te!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Typo de adresse %s non recognoscite" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Iste adresse ha ja essite confirmate." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -917,16 +927,16 @@ msgstr "Iste adresse ha ja essite confirmate." msgid "Couldn't update user." msgstr "Non poteva actualisar usator." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Non poteva deler confirmation de e-mail." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Confirmar adresse" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Le adresse \"%s\" ha essite confirmate pro tu conto." @@ -955,7 +965,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1016,7 +1026,7 @@ msgstr "Es tu secur de voler deler iste nota?" msgid "Do not delete this notice" msgstr "Non deler iste nota" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Deler iste nota" @@ -1044,54 +1054,56 @@ msgstr "" msgid "Delete this user" msgstr "Deler iste usator" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Apparentia" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Configuration del apparentia de iste sito StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "URL de logotypo invalide." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Thema non disponibile: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Cambiar logotypo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logotypo del sito" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Cambiar thema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Thema del sito" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Le thema de apparentia pro le sito." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Cambiar imagine de fundo" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Fundo" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1100,55 +1112,57 @@ msgstr "" "Tu pote incargar un imagine de fundo pro le sito. Le dimension maximal del " "file es %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Active" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Non active" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activar o disactivar le imagine de fundo." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Tegular le imagine de fundo" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Cambiar colores" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Contento" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Ligamines" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Usar predefinitiones" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaurar apparentias predefinite" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Revenir al predefinitiones" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1160,7 +1174,7 @@ msgstr "Revenir al predefinitiones" msgid "Save" msgstr "Salveguardar" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Salveguardar apparentia" @@ -1749,13 +1763,15 @@ msgstr "Facer administrator" msgid "Make this user an admin" msgstr "Facer iste usator administrator" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Chronologia de %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualisationes de membros de %1$s in %2$s!" @@ -1785,7 +1801,7 @@ msgstr "" "vide un gruppo que te place? Tenta [cercar un](%%%%action.groupsearch%%%%) o " "[crear le tue!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crear un nove gruppo" @@ -3121,8 +3137,9 @@ msgid "Invalid username or password." msgstr "Nomine de usator o contrasigno invalide." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Con iste formulario tu pote crear un nove conto. Postea, tu pote publicar " @@ -3140,8 +3157,9 @@ msgstr "6 o plus characteres. Requirite." msgid "Same as password above. Required." msgstr "Identic al contrasigno hic supra. Requirite." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-mail" @@ -3279,7 +3297,7 @@ msgstr "Tu non pote repeter tu proprie nota." msgid "You already repeated that notice." msgstr "Tu ha ja repetite iste nota." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Repetite" @@ -4281,7 +4299,8 @@ msgstr "Texto de benvenita invalide. Longitude maximal es 255 characteres." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscription predefinite invalide: '%1$s' non es usator." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" @@ -4443,28 +4462,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Bon appetito!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Gruppos %1$s, pagina %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Cercar altere gruppos" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s non es membro de alcun gruppo." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, 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:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualisationes de %1$s in %2$s!" @@ -4524,7 +4546,8 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Version" @@ -4678,221 +4701,251 @@ msgstr "Non poteva configurar le membrato del gruppo." msgid "Could not save local group info." msgstr "Non poteva salveguardar le informationes del gruppo local." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Cambiar le optiones de tu profilo" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Incargar un avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Cambiar tu contrasigno" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Modificar le tractamento de e-mail" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Designar tu profilo" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Altere" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Altere optiones" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Altere" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Pagina sin titulo" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Navigation primari del sito" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personal e chronologia de amicos" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connecter a servicios" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Connecter" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modificar le configuration del sito" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar le session del sito" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Clauder session" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear un conto" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Crear conto" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Identificar te a iste sito" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Aperir session" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Cercar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso del sito" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Vistas local" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Aviso de pagina" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Navigation secundari del sito" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Adjuta" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "A proposito" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "CdS" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Confidentialitate" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Fonte" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contacto" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Insignia" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Licentia del software StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** es un servicio de microblog offerite per [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblog. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4903,40 +4956,51 @@ 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:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licentia del contento del sito" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, 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:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, 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:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Contento e datos sub copyright del contributores. Tote le derectos reservate." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Post" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Ante" @@ -5660,7 +5724,8 @@ msgstr "Gruppos con le plus messages" msgid "Tags in %s group's notices" msgstr "Etiquettas in le notas del gruppo %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Iste pagina non es disponibile in un formato que tu accepta" @@ -6019,7 +6084,7 @@ msgstr "" "altere usatores in conversation. Altere personas pote inviar te messages que " "solmente tu pote leger." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "de" @@ -6150,48 +6215,52 @@ msgstr "" "Pardono, le obtention de tu geolocalisation prende plus tempore que " "previste. Per favor reproba plus tarde." +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "E" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "W" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "E" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "W" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "a" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "in contexto" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Repetite per" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Responder a iste nota" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Nota repetite" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index e28045d178..0446bffe47 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-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:44+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:56+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -110,7 +110,7 @@ msgstr "Ekkert þannig merki." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -124,7 +124,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,8 +184,10 @@ msgstr "" msgid "You and friends" msgstr "" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Færslur frá %1$s og vinum á %2$s!" @@ -200,13 +203,13 @@ msgstr "Færslur frá %1$s og vinum á %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -245,7 +248,7 @@ msgstr "Gat ekki uppfært notanda." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Notandi hefur enga persónulega síðu." @@ -258,7 +261,7 @@ msgstr "Gat ekki vistað persónulega síðu." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -496,12 +499,14 @@ msgstr "Hópar %s" msgid "%1$s groups %2$s is a member of." msgstr "Hópar sem %s er meðlimur í" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Hópar %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, fuzzy, php-format msgid "groups on %s" msgstr "Hópsaðgerðir" @@ -561,7 +566,7 @@ 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/designadminpanel.php:104 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 @@ -585,7 +590,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Aðgangur" @@ -597,8 +603,9 @@ msgstr "Aðgangur" msgid "Nickname" msgstr "Stuttnefni" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Lykilorð" @@ -735,8 +742,9 @@ msgstr "Engin stærð." msgid "Invalid size." msgstr "Ótæk stærð." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Mynd" @@ -747,7 +755,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Notandi með enga persónulega síðu sem passar við" @@ -768,7 +776,7 @@ msgid "Preview" msgstr "Forsýn" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Eyða" @@ -905,16 +913,18 @@ msgstr "Staðfestingarlykill fannst ekki." msgid "That confirmation code is not for you!" msgstr "Þessi staðfestingarlykill er ekki fyrir þig!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Óþekkt gerð tölvupóstfangs %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -922,17 +932,17 @@ msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." msgid "Couldn't update user." msgstr "Gat ekki uppfært notanda." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Gat ekki eytt tölvupóstsstaðfestingu." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Staðfesta tölvupóstfang" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -965,7 +975,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -1024,7 +1034,7 @@ msgstr "Ertu viss um að þú viljir eyða þessu babli?" msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Eyða þessu babli" @@ -1054,115 +1064,119 @@ msgstr "" msgid "Delete this user" msgstr "Eyða þessu babli" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "Ótæk stærð." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Þessi síða er ekki aðgengileg í " -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "Breyta" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "Bjóða" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Breyta" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Babl vefsíðunnar" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 #, fuzzy msgid "Theme for the site." msgstr "Skrá þig út af síðunni" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Texti" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1174,7 +1188,7 @@ msgstr "" msgid "Save" msgstr "Vista" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1777,13 +1791,15 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Rás %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" @@ -1808,7 +1824,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Búa til nýjan hóp" @@ -3153,7 +3169,7 @@ msgstr "Ótækt notendanafn eða lykilorð." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3170,8 +3186,9 @@ msgstr "6 eða fleiri tákn. Nauðsynlegt" msgid "Same as password above. Required." msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Tölvupóstur" @@ -3314,7 +3331,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." msgid "You already repeated that notice." msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "Í sviðsljósinu" @@ -4293,7 +4310,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Persónuleg síða" @@ -4463,27 +4481,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Hópmeðlimir %s, síða %d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" @@ -4531,7 +4552,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Persónulegt" @@ -4694,62 +4716,73 @@ msgstr "Gat ekki skráð hópmeðlimi." msgid "Could not save local group info." msgstr "Gat ekki vistað áskrift." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Breyta persónulegu stillingunum þínum" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Hlaða upp einkennismynd" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Breyta lykilorðinu þínu" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Breyta tölvupóstumsjón" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Annað" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Aðrir valkostir" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Annað" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s (%2$s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Ónafngreind síða" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Stikl aðalsíðu" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persónuleg síða og vinarás" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persónulegt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" @@ -4758,102 +4791,107 @@ msgstr "" "persónulegu síðunni þinni" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Gat ekki framsent til vefþjóns: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Tengjast" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Stikl aðalsíðu" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Stjórnandi" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Bjóða" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Skrá þig út af síðunni" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Útskráning" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Búa til aðgang" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Nýskrá" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Skrá þig inn á síðuna" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Innskráning" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjálp!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjálp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Leita að fólki eða texta" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4861,73 +4899,87 @@ msgstr "Leita" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Babl vefsíðunnar" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Staðbundin sýn" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Babl síðunnar" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Stikl undirsíðu" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Hjálp" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Um" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Spurt og svarað" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Friðhelgi" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Frumþula" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Tengiliður" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er örbloggsþjónusta." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4938,40 +4990,51 @@ msgstr "" "sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Uppröðun" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Eftir" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Áður" @@ -5674,7 +5737,8 @@ msgstr "Hóparnir með mesta bablið" msgid "Tags in %s group's notices" msgstr "Merki í babli %s hópsins" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" "Þessi síða er ekki aðgengileg í margmiðlunargerðinni sem þú tekur á móti" @@ -5969,7 +6033,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 #, fuzzy msgid "from" msgstr "frá" @@ -6099,50 +6163,54 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "Nei" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "Í sviðsljósinu" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Svara þessu babli" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Babl sent inn" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index caacd2daf8..50a0a7114e 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:47+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:13:59+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -104,7 +104,7 @@ msgstr "Pagina inesistente." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -118,7 +118,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -186,8 +187,10 @@ msgstr "" msgid "You and friends" msgstr "Tu e i tuoi amici" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Messaggi da %1$s e amici su %2$s!" @@ -203,13 +206,13 @@ msgstr "Messaggi da %1$s e amici su %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -249,7 +252,7 @@ msgstr "Impossibile aggiornare l'utente." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "L'utente non ha un profilo." @@ -261,7 +264,7 @@ msgstr "Impossibile salvare il profilo." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -494,12 +497,14 @@ msgstr "Gruppi di %s" msgid "%1$s groups %2$s is a member of." msgstr "Gruppi del sito %1$s a cui %2$s è iscritto." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Gruppi di %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "Gruppi su %s" @@ -558,7 +563,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Il token di richiesta %s è stato rifiutato o revocato." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -585,7 +590,8 @@ msgstr "" "%3$s 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 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Account" @@ -597,8 +603,9 @@ msgstr "Account" msgid "Nickname" msgstr "Soprannome" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Password" @@ -732,8 +739,9 @@ msgstr "Nessuna dimensione." msgid "Invalid size." msgstr "Dimensione non valida." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Immagine" @@ -745,7 +753,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utente senza profilo corrispondente." @@ -765,7 +773,7 @@ msgid "Preview" msgstr "Anteprima" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Elimina" @@ -901,16 +909,18 @@ msgstr "Codice di conferma non trovato." msgid "That confirmation code is not for you!" msgstr "Quel codice di conferma non è per te!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tipo di indirizzo %s non riconosciuto" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Quell'indirizzo è già stato confermato." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -918,16 +928,16 @@ msgstr "Quell'indirizzo è già stato confermato." msgid "Couldn't update user." msgstr "Impossibile aggiornare l'utente." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Impossibile eliminare l'email di conferma." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Conferma indirizzo" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." @@ -956,7 +966,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1016,7 +1026,7 @@ msgstr "Vuoi eliminare questo messaggio?" msgid "Do not delete this notice" msgstr "Non eliminare il messaggio" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -1044,54 +1054,56 @@ msgstr "" msgid "Delete this user" msgstr "Elimina questo utente" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Aspetto" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Impostazioni dell'aspetto per questo sito di StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "URL del logo non valido." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Tema non disponibile: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Modifica logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logo del sito" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Modifica tema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Tema del sito" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Tema per questo sito." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Modifica l'immagine di sfondo" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Sfondo" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1100,55 +1112,57 @@ msgstr "" "Puoi caricare un'immagine di sfondo per il sito. La dimensione massima del " "file è di %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "On" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Off" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Abilita o disabilita l'immagine di sfondo." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Affianca l'immagine di sfondo" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Modifica colori" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Contenuto" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra laterale" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Testo" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Collegamenti" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Usa predefiniti" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Ripristina i valori predefiniti" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Reimposta i valori predefiniti" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1160,7 +1174,7 @@ msgstr "Reimposta i valori predefiniti" msgid "Save" msgstr "Salva" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Salva aspetto" @@ -1753,13 +1767,15 @@ msgstr "Rendi amm." msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Attività di %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Messaggi dai membri di %1$s su %2$s!" @@ -1789,7 +1805,7 @@ msgstr "" "nomegruppo\". Non trovi un gruppo che ti piace? Prova a [cercarne uno](%%%%" "action.groupsearch%%%%) o [crea il tuo!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crea un nuovo gruppo" @@ -3119,8 +3135,9 @@ msgid "Invalid username or password." msgstr "Nome utente o password non valido." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Attraverso questo modulo puoi creare un nuovo account con cui potrai " @@ -3140,8 +3157,9 @@ msgstr "6 o più caratteri; richiesta" msgid "Same as password above. Required." msgstr "Stessa password di sopra; richiesta" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Email" @@ -3279,7 +3297,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi." msgid "You already repeated that notice." msgstr "Hai già ripetuto quel messaggio." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Ripetuti" @@ -4280,7 +4298,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" @@ -4442,27 +4461,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Gustati il tuo hotdog!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Gruppi di %1$s, pagina %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Cerca altri gruppi" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s non fa parte di alcun gruppo." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, 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:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Messaggi da %1$s su %2$s!" @@ -4522,7 +4544,8 @@ msgstr "" msgid "Plugins" msgstr "Plugin" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Versione" @@ -4678,221 +4701,251 @@ msgstr "Impossibile impostare la membership al gruppo." msgid "Could not save local group info." msgstr "Impossibile salvare le informazioni del gruppo locale." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modifica le impostazioni del tuo profilo" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Carica un'immagine" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Modifica la tua password" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Modifica la gestione dell'email" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Progetta il tuo profilo" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Altro" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Altre opzioni" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Altro" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Pagina senza nome" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Personale" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connettiti con altri servizi" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Connetti" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifica la configurazione del sito" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Amministra" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Invita" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Esci" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registrati" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Accedi" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Aiuto" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca persone o del testo" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Aiuto" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Informazioni" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "TOS" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Sorgenti" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contatti" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Badge" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Licenza del software StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** è un servizio di microblog offerto da [%%site.broughtby%%]" "(%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** è un servizio di microblog. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4903,42 +4956,53 @@ 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:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licenza del contenuto del sito" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, 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:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, 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:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " "riservati." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Paginazione" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Successivi" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Precedenti" @@ -5662,7 +5726,8 @@ msgstr "I gruppi con più messaggi" msgid "Tags in %s group's notices" msgstr "Etichette nei messaggi del gruppo %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Questa pagina non è disponibile in un tipo di supporto che tu accetti" @@ -6022,7 +6087,7 @@ msgstr "" "iniziare una conversazione con altri utenti. Altre persone possono mandare " "messaggi riservati solamente a te." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "via" @@ -6152,48 +6217,52 @@ msgstr "" "Il recupero della tua posizione geografica sta impiegando più tempo del " "previsto. Riprova più tardi." +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "E" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "O" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "E" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "O" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "presso" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "in una discussione" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Ripetuto da" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Rispondi" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Messaggio ripetuto" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 40ade26e7a..a6fe537553 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -1,6 +1,5 @@ # Translation of StatusNet to Japanese # -# Author@translatewiki.net: Aotake # Author@translatewiki.net: Fryed-peach # Author@translatewiki.net: Sonoda # Author@translatewiki.net: Whym @@ -11,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:52+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:02+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -106,7 +105,7 @@ msgstr "そのようなページはありません。" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -120,7 +119,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,8 +185,10 @@ msgstr "" msgid "You and friends" msgstr "あなたと友人" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s に %1$s と友人からの更新があります!" @@ -202,13 +204,13 @@ msgstr "%2$s に %1$s と友人からの更新があります!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -248,7 +250,7 @@ msgstr "ユーザを更新できませんでした。" #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "ユーザはプロフィールをもっていません。" @@ -260,7 +262,7 @@ msgstr "プロフィールを保存できませんでした。" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -494,12 +496,14 @@ msgstr "%s のグループ" msgid "%1$s groups %2$s is a member of." msgstr "グループ %s はメンバー" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s グループ" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "%s 上のグループ" @@ -557,7 +561,7 @@ msgid "The request token %s has been denied and revoked." msgstr "リクエストトークン%sは、拒否されて、取り消されました。" #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -581,7 +585,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "アカウント" @@ -593,8 +598,9 @@ msgstr "アカウント" msgid "Nickname" msgstr "ニックネーム" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "パスワード" @@ -727,8 +733,9 @@ msgstr "サイズがありません。" msgid "Invalid size." msgstr "不正なサイズ。" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "アバター" @@ -739,7 +746,7 @@ msgstr "自分のアバターをアップロードできます。最大サイズ #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "合っているプロフィールのないユーザ" @@ -759,7 +766,7 @@ msgid "Preview" msgstr "プレビュー" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "削除" @@ -897,16 +904,18 @@ msgstr "確認コードが見つかりません。" msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "不明なアドレスタイプ %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "そのアドレスは既に承認されています。" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -914,16 +923,16 @@ msgstr "そのアドレスは既に承認されています。" msgid "Couldn't update user." msgstr "ユーザを更新できません" -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "メール承認を削除できません" -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "アドレスの確認" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "アドレス \"%s\" はあなたのアカウントとして承認されています。" @@ -952,7 +961,7 @@ msgstr "このアプリケーションのオーナーではありません。" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -1013,7 +1022,7 @@ msgstr "本当にこのつぶやきを削除しますか?" msgid "Do not delete this notice" msgstr "このつぶやきを削除できません。" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "このつぶやきを削除" @@ -1041,54 +1050,56 @@ msgstr "" msgid "Delete this user" msgstr "このユーザを削除" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "デザイン" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "この StatusNet サイトのデザイン設定。" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "不正なロゴ URL" -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "テーマが利用できません: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "ロゴの変更" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "サイトロゴ" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "テーマ変更" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "サイトテーマ" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "サイトのテーマ" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "バックグラウンドイメージの変更" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "バックグラウンド" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1097,55 +1108,57 @@ msgstr "" "このサイト用にバックグラウンドイメージをアップロードできます。最大ファイルサ" "イズは %1$s。" -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "オン" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "オフ" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "バックグラウンドイメージのオンまたはオフ。" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "タイルバックグラウンドイメージ" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "色の変更" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "内容" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "サイドバー" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "テキスト" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "リンク" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "デフォルトを使用" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "デフォルトデザインに戻す。" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "デフォルトへリセットする" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1157,7 +1170,7 @@ msgstr "デフォルトへリセットする" msgid "Save" msgstr "保存" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "デザインの保存" @@ -1752,13 +1765,15 @@ msgstr "管理者にする" msgid "Make this user an admin" msgstr "このユーザを管理者にする" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s のタイムライン" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上の %1$s のメンバーから更新する" @@ -1788,7 +1803,7 @@ msgstr "" "うか[探してみる](%%%%action.groupsearch%%%%)か、あなた自身で[始めてください!]" "(%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "新しいグループを作成" @@ -3117,8 +3132,9 @@ msgid "Invalid username or password." msgstr "不正なユーザ名またはパスワード。" #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "このフォームで新しいアカウントを作成できます。 次につぶやきを投稿して、友人や" @@ -3137,8 +3153,9 @@ msgstr "6文字以上。必須です。" msgid "Same as password above. Required." msgstr "上のパスワードと同じです。 必須。" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "メール" @@ -3274,7 +3291,7 @@ msgstr "自分のつぶやきは繰り返せません。" msgid "You already repeated that notice." msgstr "すでにそのつぶやきを繰り返しています。" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "繰り返された" @@ -4289,7 +4306,8 @@ msgstr "不正なウェルカムテキスト。最大長は255字です。" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "プロファイル" @@ -4452,27 +4470,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "あなたのhotdogを楽しんでください!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s グループ、ページ %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "もっとグループを検索" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s はどのグループのメンバーでもありません。" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[グループを探して](%%action.groupsearch%%)それに加入してください。" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%1$s から %2$s 上の更新をしました!" @@ -4522,7 +4543,8 @@ msgstr "" msgid "Plugins" msgstr "プラグイン" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "バージョン" @@ -4682,164 +4704,180 @@ msgstr "グループメンバーシップをセットできません。" msgid "Could not save local group info." msgstr "フォローを保存できません。" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "プロファイル設定の変更" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "アバターのアップロード" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "パスワードの変更" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "メールの扱いを変更" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "あなたのプロファイルをデザイン" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "その他" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "その他のオプション" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "その他" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "名称未設定ページ" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "パーソナルプロファイルと友人のタイムライン" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "パーソナル" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "メールアドレス、アバター、パスワード、プロパティの変更" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "サービスへ接続" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "接続" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "サイト設定の変更" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "管理者" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "友人や同僚が %s で加わるよう誘ってください。" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "招待" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "サイトからログアウト" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "ログアウト" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "アカウントを作成" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "登録" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "サイトへログイン" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ログイン" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "助けて!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "ヘルプ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "人々かテキストを検索" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4847,73 +4885,87 @@ msgstr "検索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "サイトつぶやき" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "ローカルビュー" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "ページつぶやき" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "セカンダリサイトナビゲーション" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "ヘルプ" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "About" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "よくある質問" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "プライバシー" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "ソース" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "連絡先" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "バッジ" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" "イクロブログサービスです。 " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** はマイクロブログサービスです。 " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4924,39 +4976,50 @@ msgstr "" "いています。 ライセンス [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)。" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "サイト内容ライセンス" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "ページ化" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "<<後" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "前>>" @@ -5636,7 +5699,8 @@ msgstr "投稿が多いグループ" msgid "Tags in %s group's notices" msgstr "%s グループのつぶやきにあるタグ" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "このページはあなたが承認したメディアタイプでは利用できません。" @@ -5995,7 +6059,7 @@ msgstr "" "に引き込むプライベートメッセージを送ることができます。人々はあなただけへの" "メッセージを送ることができます。" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "from" @@ -6129,52 +6193,56 @@ msgstr "" "すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一" "度試みてください" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "北" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 #, fuzzy msgid "S" msgstr "南" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 #, fuzzy msgid "E" msgstr "東" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 #, fuzzy msgid "W" msgstr "西" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "at" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "このつぶやきへ返信" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "返信" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "つぶやきを繰り返しました" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 2a02ec302f..d3cd1bd673 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:55+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:05+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -101,7 +101,7 @@ msgstr "해당하는 페이지 없음" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -115,7 +115,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -176,8 +177,10 @@ msgstr "" msgid "You and friends" msgstr "당신 및 친구들" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!" @@ -193,13 +196,13 @@ msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -236,7 +239,7 @@ msgstr "이용자를 업데이트 할 수 없습니다." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." @@ -248,7 +251,7 @@ msgstr "프로필을 저장 할 수 없습니다." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -481,12 +484,14 @@ msgstr "%s의 그룹들" msgid "%1$s groups %2$s is a member of." msgstr "%s 그룹들은 의 멤버입니다." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s 그룹" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "%s 상의 그룹들" @@ -544,7 +549,7 @@ 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/designadminpanel.php:104 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 @@ -571,7 +576,8 @@ msgstr "" "에 대해 %3$s 할 수 있습니다 .믿을 수 있는 써드파티에게만 %4" "$s 계정의 접근을 허용해야 합니다." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "계정" @@ -583,8 +589,9 @@ msgstr "계정" msgid "Nickname" msgstr "별명" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "비밀 번호" @@ -717,8 +724,9 @@ msgstr "사이즈가 없습니다." msgid "Invalid size." msgstr "옳지 않은 크기" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "아바타" @@ -729,7 +737,7 @@ msgstr "당신의 개인 아바타를 업로드할 수 있습니다. 최대 파 #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "프로필 매칭이 없는 사용자" @@ -750,7 +758,7 @@ msgid "Preview" msgstr "미리보기" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "삭제" @@ -887,16 +895,18 @@ msgstr "인증 코드가 없습니다." msgid "That confirmation code is not for you!" msgstr "그 인증 코드는 귀하의 것이 아닙니다!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "인식되지않은 주소유형 %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "그 주소는 이미 승인되었습니다." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -904,16 +914,16 @@ msgstr "그 주소는 이미 승인되었습니다." msgid "Couldn't update user." msgstr "사용자를 업데이트 할 수 없습니다." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "이메일 승인을 삭제 할 수 없습니다." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "주소 확인" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" 는 귀하의 계정으로 승인되었습니다." @@ -946,7 +956,7 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -1008,7 +1018,7 @@ msgstr "정말로 통지를 삭제하시겠습니까?" msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -1037,54 +1047,56 @@ msgstr "" msgid "Delete this user" msgstr "이 게시글 삭제하기" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "이 StatusNet 사이트에 대한 디자인 설정" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "잘못된 로고 URL 입니다." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "테마를 이용할 수 없습니다: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "로고 변경" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "사이트 로고" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "테마 바꾸기" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "사이트 테마" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "사이트에 대한 테마" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "배경 이미지 바꾸기" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "배경" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1092,58 +1104,60 @@ msgid "" msgstr "" "사이트의 배경 이미지를 업로드할 수 있습니다. 최대 파일 크기는 %1$s 입니다." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "켜기" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "끄기" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "배경 이미지를 켜거나 끈다." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "배경 이미지를 반복 나열" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "색상 변경" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "연결" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "검색" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "문자" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "로그인" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1155,7 +1169,7 @@ msgstr "" msgid "Save" msgstr "저장" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1763,13 +1777,15 @@ msgstr "관리자" msgid "Make this user an admin" msgstr "이 이용자를 관리자로 만듦" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s 타임라인" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -1794,7 +1810,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "새 그룹을 만듭니다." @@ -3123,7 +3139,7 @@ msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3141,8 +3157,9 @@ msgstr "6글자 이상이 필요합니다." msgid "Same as password above. Required." msgstr "위와 같은 비밀 번호. 필수 사항." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "이메일" @@ -3281,7 +3298,7 @@ msgstr "자신의 글은 재전송할 수 없습니다." msgid "You already repeated that notice." msgstr "당신은 이미 이 사용자를 차단하고 있습니다." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "재전송됨" @@ -4266,7 +4283,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "프로필" @@ -4435,28 +4453,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "%s 그룹 회원, %d페이지" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 #, fuzzy msgid "Search for more groups" msgstr "프로필이나 텍스트 검색" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -4504,7 +4525,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "버젼" @@ -4669,163 +4691,179 @@ msgstr "그룹 맴버십을 세팅할 수 없습니다." msgid "Could not save local group info." msgstr "구독을 저장할 수 없습니다." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "프로필 세팅 바꾸기" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "아바타를 업로드하세요." -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "비밀번호 바꾸기" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "이메일 처리 변경" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "이용자 프로필" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "기타" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "다른 옵션들" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "기타" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s (%2$s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "제목없는 페이지" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "주 사이트 네비게이션" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "개인 프로필과 친구 타임라인" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "개인적인" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "서버에 재접속 할 수 없습니다 : %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "연결" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "주 사이트 네비게이션" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "관리자" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "초대" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "이 사이트로부터 로그아웃" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "로그아웃" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "계정 만들기" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "회원가입" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "이 사이트 로그인" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "로그인" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "도움이 필요해!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "도움말" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4833,74 +4871,88 @@ msgstr "검색" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "사이트 공지" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "로컬 뷰" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "페이지 공지" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "도움말" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "정보" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "자주 묻는 질문" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "개인정보 취급방침" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "소스 코드" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "연락하기" -#: lib/action.php:770 +#: lib/action.php:784 #, fuzzy msgid "Badge" msgstr "찔러 보기" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " "마이크로블로깅서비스입니다." -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4911,40 +4963,51 @@ msgstr "" "을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "페이지수" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "뒷 페이지" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "앞 페이지" @@ -5648,7 +5711,8 @@ msgstr "가장 많은 게시글이 있는 그룹들" msgid "Tags in %s group's notices" msgstr "%s 그룹 게시글의 태그" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." @@ -5940,7 +6004,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 #, fuzzy msgid "from" msgstr "다음에서:" @@ -6070,51 +6134,55 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "아니오" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "내용이 없습니다!" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "생성" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "답장하기" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "게시글이 등록되었습니다." diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index aa7155fac7..2fa296c93f 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:00:59+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:09+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -82,9 +82,8 @@ msgstr "Зачувај" #. 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 -#, fuzzy msgid "No such page." -msgstr "Нема таква страница" +msgstr "Нема таква страница." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -104,7 +103,7 @@ msgstr "Нема таква страница" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -118,7 +117,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -186,8 +186,10 @@ msgstr "" msgid "You and friends" msgstr "Вие и пријателите" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Подновувања од %1$s и пријатели на %2$s!" @@ -203,13 +205,13 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -232,13 +234,12 @@ msgid "This method requires a POST." msgstr "Овој метод бара POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "Мора да назначите параметар со име 'device' со една од следниве вредности: " -"sms, im, none" +"sms, im, none." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -249,7 +250,7 @@ msgstr "Не можев да го подновам корисникот." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Корисникот нема профил." @@ -261,7 +262,7 @@ msgstr "Не може да се зачува профил." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -439,9 +440,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Премногу алијаси! Дозволено е највеќе %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Неважечки алијас: „%s“" +msgstr "Неважечки алијас: „%s“." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -457,9 +458,8 @@ msgstr "Алијасот не може да биде ист како прека #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "Групата не е пронајдена!" +msgstr "Групата не е пронајдена." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -495,12 +495,14 @@ msgstr "%s групи" msgid "%1$s groups %2$s is a member of." msgstr "%1$s групи кадешто членува %2$s." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s групи" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "групи на %s" @@ -558,7 +560,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Жетонот на барањето %s е одбиен и поништен." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -585,7 +587,8 @@ msgstr "" "%3$s податоците за Вашата %4$s сметка. Треба да дозволувате " "пристап до Вашата %4$s сметка само на трети страни на кои им верувате." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Сметка" @@ -597,8 +600,9 @@ msgstr "Сметка" msgid "Nickname" msgstr "Прекар" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Лозинка" @@ -733,8 +737,9 @@ msgstr "Нема големина." msgid "Invalid size." msgstr "Погрешна големина." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Аватар" @@ -747,7 +752,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Корисник без соодветен профил." @@ -767,7 +772,7 @@ msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Бриши" @@ -888,9 +893,9 @@ msgstr "Одблокирај го овој корсник" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Објави во " +msgstr "Објави во %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -904,16 +909,18 @@ msgstr "Кодот за потврда не е пронајден." msgid "That confirmation code is not for you!" msgstr "Овој код за потврда не е за Вас!" -#: actions/confirmaddress.php:90 -#, fuzzy, php-format +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format msgid "Unrecognized address type %s." -msgstr "Непознат тип на адреса %s" +msgstr "Непознат тип на адреса %s." -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Оваа адреса веќе е потврдена." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -921,16 +928,16 @@ msgstr "Оваа адреса веќе е потврдена." msgid "Couldn't update user." msgstr "Не можев да го подновам корисникот." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не можев да ја избришам потврдата по е-пошта." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Потврди адреса" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресата \"%s\" е потврдена за Вашата сметка." @@ -959,7 +966,7 @@ msgstr "Не сте сопственик на овој програм." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1020,7 +1027,7 @@ msgstr "Дали сте сигурни дека сакате да ја избр msgid "Do not delete this notice" msgstr "Не ја бриши оваа забелешка" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Бриши ја оваа забелешка" @@ -1048,54 +1055,56 @@ msgstr "" msgid "Delete this user" msgstr "Избриши овој корисник" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Изглед" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Нагодувања на изгледот на оваа StatusNet веб-страница." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "Погрешен URL на лого." -#: actions/designadminpanel.php:279 -#, fuzzy, php-format +#: actions/designadminpanel.php:280 +#, php-format msgid "Theme not available: %s." -msgstr "Непосточка тема: %s" +msgstr "Темата е недостапна: %s." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Промени лого" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Лого на веб-страницата" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Промени тема" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Тема на веб-страницата" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Тема за веб-страницата." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Промена на слика на позадина" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Позадина" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1104,55 +1113,57 @@ msgstr "" "Може да подигнете позадинска слика за оваа веб-страница. Максималната " "големина на податотеката е %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Вкл." -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Искл." -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Вклучи или исклучи позадинска слика." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Позадината во квадрати" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Промена на бои" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Содржина" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Странична лента" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Текст" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Врски" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Користи по основно" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Врати основно-зададени нагодувања" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Врати по основно" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1164,7 +1175,7 @@ msgstr "Врати по основно" msgid "Save" msgstr "Зачувај" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Зачувај изглед" @@ -1585,9 +1596,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Далечинската служба користи непозната верзија на OMB протокол." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Грешка во подновувањето на далечинскиот профил" +msgstr "Грешка во подновувањето на далечинскиот профил." #: actions/getfile.php:79 msgid "No such file." @@ -1758,13 +1768,15 @@ msgstr "Направи го/ја администратор" msgid "Make this user an admin" msgstr "Направи го корисникот администратор" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Историја на %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Подновувања од членови на %1$s на %2$s!" @@ -1795,7 +1807,7 @@ msgstr "" "[ја пронајдете](%%%%action.groupsearch%%%%) или [започнете своја!](%%%%" "action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Создај нова група" @@ -1962,10 +1974,10 @@ msgid "Invites have been disabled." msgstr "Поканите се оневозможени." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." msgstr "" -"Мора да сте најавени за да можете да каните други корисници да користат %s" +"Мора да сте најавени за да можете да каните други корисници да користат %s." #: actions/invite.php:72 #, php-format @@ -2197,9 +2209,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Не можам да го направам корисникот %1$s администратор на групата %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Нема тековен статус" +msgstr "Нема тековен статус." #: actions/newapplication.php:52 msgid "New Application" @@ -2366,9 +2377,9 @@ msgid "You are not a user of that application." msgstr "Не сте корисник на тој програм." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "Не можам да му го одземам пристапот на програмот: " +msgstr "Не можам да му го одземам пристапот на програмот: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2380,9 +2391,8 @@ msgstr "" "Развивачите можат да ги нагодат регистрациските поставки за нивните програми " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Забелешката нема профил" +msgstr "Забелешката нема профил." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2391,15 +2401,15 @@ msgstr "%1$s статус на %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "тип на содржини " +msgstr "Содржините од типот %s не се поддржани." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "Ве молиме користете само %s URL-адреси врз прост HTTP-код." #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 @@ -2553,24 +2563,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Нагодувања за патеки и сервери за оваа StatusNet веб-страница." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Директориумот на темата е нечитлив: %s" +msgstr "Директориумот на темата е нечитлив: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Директориумот на аватарот е недостапен за пишување: %s" +msgstr "Директориумот на аватарот е недостапен за запишување: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Директориумот на позадината е нечитлив: %s" +msgstr "Директориумот на позадината е нечитлив: %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Директориумот на локалите е нечитлив: %s" +msgstr "Директориумот на локалите е нечитлив: %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2711,9 +2721,9 @@ msgid "People search" msgstr "Пребарување на луѓе" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "Не е важечка ознака за луѓе: %s" +msgstr "Не е важечка ознака за луѓе: %s." #: actions/peopletag.php:142 #, php-format @@ -2721,9 +2731,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Користници самоозначени со %1$s - стр. %2$d" #: actions/postnotice.php:95 -#, fuzzy msgid "Invalid notice content." -msgstr "Неважечка содржина на забелешката" +msgstr "Неважечка содржина на забелешката." #: actions/postnotice.php:101 #, php-format @@ -2870,9 +2879,9 @@ msgid "Settings saved." msgstr "Нагодувањата се зачувани" #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Надминато е ограничувањето на страницата (%s)" +msgstr "Надминато е ограничувањето на страницата (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3134,8 +3143,9 @@ msgid "Invalid username or password." msgstr "Погрешно име или лозинка." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Со овој образец можете да создадете нова сметка. Потоа ќе можете да " @@ -3155,8 +3165,9 @@ msgstr "Барем 6 знаци. Задолжително поле." msgid "Same as password above. Required." msgstr "Исто што и лозинката погоре. Задолжително поле." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Е-пошта" @@ -3169,13 +3180,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Подолго име, по можност Вашето вистинско име и презиме" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -" освен овие приватни податоци: лозинка, е-пошта, IM-адреса и телефонски " -"број." +"Мојот текст и податотеки се достапни под %s, освен следниве приватни " +"податоци: лозинка, е-пошта, IM-адреса и телефонски број." #: actions/register.php:542 #, php-format @@ -3294,7 +3305,7 @@ msgstr "Не можете да повторувате сопствена заб msgid "You already repeated that notice." msgstr "Веќе ја имате повторено таа забелешка." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Повторено" @@ -3792,7 +3803,6 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Минималниот дозволен текст изнесува 0 (неограничено)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." msgstr "Ограничувањето на дуплирањето мора да изнесува барем 1 секунда." @@ -3887,9 +3897,8 @@ msgid "Unable to save site notice." msgstr "Не можам да ја зачувам објавата за веб-страницата." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." -msgstr "Објавата за цела веб-страница не треба да има повеќе од 255 знаци" +msgstr "Објавата за цела веб-страница не треба да содржи повеќе од 255 знаци." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -4261,9 +4270,8 @@ msgid "User is not silenced." msgstr "Корисникот не е замолчен." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." -msgstr "Во барањето нема id на профилот." +msgstr "!Во барањето нема ID на профилот." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -4300,7 +4308,8 @@ msgstr "НЕважечки текст за добредојде. Дозволе msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" @@ -4463,29 +4472,32 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Добар апетит!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Групи %1$s, стр. %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Пребарај уште групи" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s не членува во ниедна група." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Обидете се со [пребарување на групи](%%action.groupsearch%%) и придружете им " "се." -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Подновувања од %1$s на %2$s!" @@ -4545,7 +4557,8 @@ msgstr "" msgid "Plugins" msgstr "Приклучоци" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Верзија" @@ -4701,221 +4714,251 @@ msgstr "Не можев да назначам членство во групат msgid "Could not save local group info." msgstr "Не можев да ги зачувам информациите за локалните групи." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Смени профилни нагодувања" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Подигни аватар" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Смени лозинка" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Смени ракување со е-пошта" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Наместете изглед на Вашиот профил" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Друго" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Други нагодувања" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Друго" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Страница без наслов" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Главна навигација" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личен профил и хронологија на пријатели" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промена на е-пошта, аватар, лозинка, профил" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Поврзи се со услуги" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Поврзи се" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промена на поставките на веб-страницата" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Админ" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете пријатели и колеги да Ви се придружат на %s" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Одјава" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Одјава" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создај сметка" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Регистрација" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Најава" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Најава" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Напомош!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарајте луѓе или текст" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Напомена за веб-страницата" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Локални прегледи" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Напомена за страницата" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Споредна навигација" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Помош" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "За" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "ЧПП" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "Услови" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Приватност" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Изворен код" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Контакт" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Значка" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Лиценца на програмот StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е сервис за микроблогирање." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4926,43 +4969,54 @@ msgstr "" "верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Лиценца на содржините на веб-страницата" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содржината и податоците на %1$s се лични и доверливи." -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторските права на содржината и податоците се во сопственост на %1$s. Сите " "права задржани." -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " "права задржани." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "" +msgstr "Сите содржини и податоци на %1$s се достапни под лиценцата %2$s." -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Прелом на страници" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "По" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Пред" @@ -5681,7 +5735,8 @@ msgstr "Групи со највеќе објави" msgid "Tags in %s group's notices" msgstr "Ознаки во забелешките на групата %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." @@ -5864,9 +5919,9 @@ msgstr "Потврда за СМС" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "Очекувам потврда за овој телефонски број." +msgstr "%s: потврдете го како свој телефонскиов број со следниов код:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 @@ -5995,6 +6050,9 @@ msgid "" "\n" "\t%s" msgstr "" +"Целиот разговор може да се проследи тука:\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format @@ -6028,6 +6086,29 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%1$s (@%9$s) штотуку Ви даде на знаење за забелешката ('@-одговор') на %2" +"$s.\n" +"\n" +"Еве ја забелешката:\n" +"\n" +"%3$s\n" +"\n" +"Таа гласи:\n" +"\n" +"%4$s\n" +"\n" +"%5$sМожете да одговорите на неа тука:\n" +"\n" +"%6$s\n" +"\n" +"Еве листа за сите @-одговори за вас:\n" +"\n" +"%7$s\n" +"\n" +"Со почит,\n" +"%2$s\n" +"\n" +"П.С. Можете да ги исклучите овие известувања по е-пошта тука: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6042,7 +6123,7 @@ msgstr "" "впуштите во разговор со други корисници. Луѓето можат да ви испраќаат пораки " "што ќе можете да ги видите само Вие." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "од" @@ -6175,48 +6256,52 @@ msgstr "" "Жалиме, но добивањето на Вашата местоположба трае подолго од очекуваното. " "Обидете се подоцна." +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "С" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "Ј" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "И" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "З" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "С" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "Ј" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "И" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "З" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "во" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "во контекст" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Повторено од" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Одговори на забелешкава" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Одговор" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Забелешката е повторена" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 997f443bb5..02360d3abe 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:02+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:12+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 (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -102,7 +102,7 @@ msgstr "Ingen slik side" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -116,7 +116,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -182,8 +183,10 @@ msgstr "" msgid "You and friends" msgstr "Du og venner" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringer fra %1$s og venner på %2$s!" @@ -199,13 +202,13 @@ msgstr "Oppdateringer fra %1$s og venner på %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -245,7 +248,7 @@ msgstr "Klarte ikke å oppdatere bruker." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Brukeren har ingen profil." @@ -258,7 +261,7 @@ msgstr "Klarte ikke å lagre profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -490,12 +493,14 @@ msgstr "%s sine grupper" msgid "%1$s groups %2$s is a member of." msgstr "%1$s grupper %2$s er et medlem av." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grupper" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "grupper på %s" @@ -551,7 +556,7 @@ 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/designadminpanel.php:104 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 @@ -578,7 +583,8 @@ msgstr "" "%3$s dine %4$s-kontodata. Du bør bare gi tilgang til din %4" "$s-konto til tredjeparter du stoler på." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Konto" @@ -590,8 +596,9 @@ msgstr "Konto" msgid "Nickname" msgstr "Nick" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Passord" @@ -724,8 +731,9 @@ msgstr "Ingen størrelse." msgid "Invalid size." msgstr "Ugyldig størrelse" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Brukerbilde" @@ -736,7 +744,7 @@ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Bruker uten samsvarende profil." @@ -756,7 +764,7 @@ msgid "Preview" msgstr "Forhåndsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Slett" @@ -892,16 +900,18 @@ msgstr "Fant ikke bekreftelseskode." msgid "That confirmation code is not for you!" msgstr "Den bekreftelseskoden er ikke til deg." -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Ukjent adressetype %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Den adressen har allerede blitt bekreftet." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -909,16 +919,16 @@ msgstr "Den adressen har allerede blitt bekreftet." msgid "Couldn't update user." msgstr "Klarte ikke å oppdatere bruker." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kunne ikke slette e-postbekreftelse." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Bekreft adresse" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adressen «%s» har blitt bekreftet for din konto." @@ -947,7 +957,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -1008,7 +1018,7 @@ msgstr "Er du sikker på at du vil slette denne notisen?" msgid "Do not delete this notice" msgstr "Ikke slett denne notisen" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1036,54 +1046,56 @@ msgstr "" msgid "Delete this user" msgstr "Slett denne brukeren" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "Ugyldig logo-URL." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Tema ikke tilgjengelig: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Endre logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Nettstedslogo" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Endre tema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Nettstedstema" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Tema for nettstedet." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Endre bakgrunnsbilde" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Bakgrunn" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1091,55 +1103,57 @@ msgid "" msgstr "" "Du kan laste opp et bakgrunnsbilde for nettstedet. Maks filstørrelse er %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "På" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Av" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Slå på eller av bakgrunnsbilde." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Gjenta bakgrunnsbildet" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Endre farger" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Innhold" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Sidelinje" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Lenker" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Bruk standard" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Tilbakestill til standardverdier" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1151,7 +1165,7 @@ msgstr "Tilbakestill til standardverdier" msgid "Save" msgstr "Lagre" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1733,13 +1747,15 @@ 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:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s tidslinje" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringer fra medlemmer av %1$s på %2$s!" @@ -1769,7 +1785,7 @@ msgstr "" "Prøv å [søke etter en](%%%%action.groupsearch%%%%) eller [start din egen.](%%" "%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Opprett en ny gruppe" @@ -3058,7 +3074,7 @@ msgstr "Ugyldig brukernavn eller passord" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3075,8 +3091,9 @@ msgstr "6 eller flere tegn. Påkrevd." msgid "Same as password above. Required." msgstr "Samme som passord over. Kreves." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-post" @@ -3209,7 +3226,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "Du er allerede logget inn!" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Gjentatt" @@ -4185,7 +4202,8 @@ msgstr "Ugyldig velkomsttekst. Maks lengde er 255 tegn." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ugyldig standardabonnement: '%1$s' er ikke bruker." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4338,27 +4356,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Bon appétit." -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Alle abonnementer" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Søk etter flere grupper" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s er ikke medlem av noen gruppe." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Prøv å [søke etter grupper](%%action.groupsearch%%) og bli med i dem." -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar fra %1$s på %2$s!" @@ -4408,7 +4429,8 @@ msgstr "" msgid "Plugins" msgstr "Programtillegg" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Versjon" @@ -4563,223 +4585,253 @@ msgstr "Kunne ikke stille inn gruppemedlemskap." msgid "Could not save local group info." msgstr "Kunne ikke lagre lokal gruppeinformasjon." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Endre profilinnstillingene dine" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Last opp en avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Endre passordet ditt" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Endre eposthåndtering" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "Klarte ikke å lagre profil." -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Andre" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Andre valg" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Andre" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Side uten tittel" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Personlig" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endre passordet ditt" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Koble til tjenester" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Koble til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Endre nettstedskonfigurasjon" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg ut fra nettstedet" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett en konto" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registrer" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Log inn på nettstedet" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp meg." -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter personer eller tekst" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Hjelp" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Om" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "OSS/FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Kilde" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Programvarelisens for StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4787,39 +4839,50 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Etter" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Før" @@ -5499,7 +5562,8 @@ msgstr "Grupper med flest innlegg" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Denne siden er ikke tilgjengelig i en mediatype du aksepterer" @@ -5857,7 +5921,7 @@ msgstr "" "engasjere andre brukere i en samtale. Personer kan sende deg meldinger som " "bare du kan se." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "fra" @@ -5984,48 +6048,52 @@ msgstr "" "Beklager, henting av din geoposisjon tar lenger tid enn forventet, prøv " "igjen senere" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "Ø" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "V" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "Ø" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "V" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Repetert av" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Notis repetert" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 8962af19ad..bbc8a9c860 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:16:50+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:18+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -102,7 +102,7 @@ msgstr "Deze pagina bestaat niet." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -116,7 +116,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,8 +185,10 @@ msgstr "" msgid "You and friends" msgstr "U en vrienden" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates van %1$s en vrienden op %2$s." @@ -201,13 +204,13 @@ msgstr "Updates van %1$s en vrienden op %2$s." #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -246,7 +249,7 @@ msgstr "Het was niet mogelijk de gebruiker bij te werken." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Deze gebruiker heeft geen profiel." @@ -258,7 +261,7 @@ msgstr "Het was niet mogelijk het profiel op te slaan." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -496,12 +499,14 @@ msgstr "Groepen van %s" msgid "%1$s groups %2$s is a member of." msgstr "Groepen op de site %1$s waar %2$s lid van is." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s groepen" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "groepen op %s" @@ -565,7 +570,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Het verzoektoken %s is geweigerd en ingetrokken." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -592,7 +597,8 @@ msgstr "" "van het type \"%3$s tot uw gebruikersgegevens. Geef alleen " "toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Gebruiker" @@ -604,8 +610,9 @@ msgstr "Gebruiker" msgid "Nickname" msgstr "Gebruikersnaam" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Wachtwoord" @@ -740,8 +747,9 @@ msgstr "Geen afmeting." msgid "Invalid size." msgstr "Ongeldige afmetingen." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -753,7 +761,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Gebruiker zonder bijbehorend profiel." @@ -773,7 +781,7 @@ msgid "Preview" msgstr "Voorvertoning" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Verwijderen" @@ -910,16 +918,18 @@ msgstr "De bevestigingscode niet gevonden." msgid "That confirmation code is not for you!" msgstr "Dit is niet uw bevestigingscode!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, php-format msgid "Unrecognized address type %s." msgstr "Onbekend adrestype %s." -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Dit adres is al bevestigd." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -927,16 +937,16 @@ msgstr "Dit adres is al bevestigd." msgid "Couldn't update user." msgstr "De gebruiker kon gebruiker niet bijwerkt worden." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "De e-mailbevestiging kon niet verwijderd worden." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Adres bevestigen" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Het adres \"%s\" is voor uw gebruiker bevestigd." @@ -965,7 +975,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1026,7 +1036,7 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -1055,54 +1065,56 @@ msgstr "" msgid "Delete this user" msgstr "Gebruiker verwijderen" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Uiterlijk" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Instellingen voor de vormgeving van deze StatusNet-website." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "De logo-URL is ongeldig." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, php-format msgid "Theme not available: %s." msgstr "De vormgeving is niet beschikbaar: %s." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Logo wijzigen" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Websitelogo" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Vormgeving wijzigen" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Vormgeving website" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Mogelijke vormgevingen voor deze website." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Achtergrondafbeelding wijzigen" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Achtergrond" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1111,55 +1123,57 @@ msgstr "" "Hier kunt u een achtergrondafbeelding voor de website uploaden. De maximale " "bestandsgrootte is %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Aan" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Uit" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Achtergrondafbeelding inschakelen of uitschakelen." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Achtergrondafbeelding naast elkaar" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Kleuren wijzigen" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Inhoud" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Menubalk" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Verwijzingen" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Standaardontwerp toepassen" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Standaardinstellingen toepassen" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1171,7 +1185,7 @@ msgstr "Standaardinstellingen toepassen" msgid "Save" msgstr "Opslaan" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Ontwerp opslaan" @@ -1768,13 +1782,15 @@ msgstr "Beheerder maken" msgid "Make this user an admin" msgstr "Deze gebruiker beheerder maken" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s tijdlijn" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Updates voor leden van %1$s op %2$s." @@ -1805,7 +1821,7 @@ msgstr "" "[doorzoek dan de groepen](%%%%action.groupsearch%%%%) of [start zelf een " "groep!](%%%%action.newgroup%%%%)." -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Nieuwe groep aanmaken" @@ -3152,8 +3168,9 @@ msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Via dit formulier kunt u een nieuwe gebruiker aanmaken. Daarna kunt u " @@ -3171,8 +3188,9 @@ msgstr "Zes of meer tekens. Verplicht" msgid "Same as password above. Required." msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-mail" @@ -3311,7 +3329,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen." msgid "You already repeated that notice." msgstr "U hent die mededeling al herhaald." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Herhaald" @@ -4323,7 +4341,8 @@ msgstr "Ongeldige welkomsttekst. De maximale lengte is 255 tekens." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" @@ -4487,28 +4506,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Geniet van uw hotdog!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Groepen voor %1$s, pagina %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Meer groepen zoeken" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s is van geen enkele groep lid." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, 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:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates van %1$s op %2$s." @@ -4568,7 +4590,8 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Versie" @@ -4732,221 +4755,251 @@ msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." msgid "Could not save local group info." msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Uw profielgegevens wijzigen" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Avatar uploaden" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Uw wachtwoord wijzigen" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "E-mailafhandeling wijzigen" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Uw profiel ontwerpen" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Overige" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Overige instellingen" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Overige" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Naamloze pagina" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Primaire sitenavigatie" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persoonlijk profiel en tijdlijn van vrienden" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Persoonlijk" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Met andere diensten koppelen" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Koppelen" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Websiteinstellingen wijzigen" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Beheer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Uitnodigingen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Gebruiker afmelden" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Afmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Gebruiker aanmaken" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registreren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Gebruiker aanmelden" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Naar gebruikers of tekst zoeken" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Zoeken" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Mededeling van de website" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Lokale weergaven" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Mededeling van de pagina" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Secundaire sitenavigatie" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Help" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Over" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Veel gestelde vragen" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "Gebruiksvoorwaarden" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Broncode" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contact" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Widget" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Licentie van de StatusNet-software" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is een microblogdienst. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4957,44 +5010,55 @@ msgstr "" "versie %s, beschikbaar onder de [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licentie voor siteinhoud" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, 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:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, 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:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " "gebruikers. Alle rechten voorbehouden." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Alle inhoud en gegevens van %1$s zijn beschikbaar onder de licentie %2$s." -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Later" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Eerder" @@ -5722,7 +5786,8 @@ msgstr "Groepen met de meeste berichten" msgid "Tags in %s group's notices" msgstr "Labels in de groepsmededelingen van %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Deze pagina is niet beschikbaar in een mediatype dat u accepteert" @@ -6109,7 +6174,7 @@ msgstr "" "U hebt geen privéberichten. U kunt privéberichten verzenden aan andere " "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "van" @@ -6242,48 +6307,52 @@ msgstr "" "Het ophalen van uw geolocatie duurt langer dan verwacht. Probeer het later " "nog eens" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "Z" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "O" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "W" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "Z" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "O" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "W" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "op" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "in context" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Herhaald door" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Op deze mededeling antwoorden" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Antwoorden" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Mededeling herhaald" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 2e980cce2d..eb13488c7c 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:05+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:15+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 (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -109,7 +109,7 @@ msgstr "Dette emneord finst ikkje." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -123,7 +123,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,8 +184,10 @@ msgstr "" msgid "You and friends" msgstr "%s med vener" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringar frå %1$s og vener på %2$s!" @@ -200,13 +203,13 @@ msgstr "Oppdateringar frå %1$s og vener på %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -245,7 +248,7 @@ msgstr "Kan ikkje oppdatera brukar." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Brukaren har inga profil." @@ -258,7 +261,7 @@ msgstr "Kan ikkje lagra profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -498,12 +501,14 @@ msgstr "%s grupper" msgid "%1$s groups %2$s is a member of." msgstr "Grupper %s er medlem av" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grupper" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, fuzzy, php-format msgid "groups on %s" msgstr "Gruppe handlingar" @@ -563,7 +568,7 @@ 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/designadminpanel.php:104 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 @@ -587,7 +592,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Konto" @@ -599,8 +605,9 @@ msgstr "Konto" msgid "Nickname" msgstr "Kallenamn" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Passord" @@ -739,8 +746,9 @@ msgstr "Ingen storleik." msgid "Invalid size." msgstr "Ugyldig storleik." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Brukarbilete" @@ -751,7 +759,7 @@ msgstr "Du kan laste opp ein personleg avatar." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Kan ikkje finne brukar" @@ -772,7 +780,7 @@ msgid "Preview" msgstr "Forhandsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Slett" @@ -911,16 +919,18 @@ msgstr "Fann ikkje stadfestingskode." msgid "That confirmation code is not for you!" msgstr "Den godkjenningskoden er ikkje for deg!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Ukjend adressetype %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Den addressa har alt blitt bekrefta." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -928,17 +938,17 @@ msgstr "Den addressa har alt blitt bekrefta." msgid "Couldn't update user." msgstr "Kan ikkje oppdatera brukar." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kan ikkje sletta e-postgodkjenning." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Stadfest adresse" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Addressa \"%s\" har blitt bekrefta for din konto." @@ -971,7 +981,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -1034,7 +1044,7 @@ msgstr "Sikker på at du vil sletta notisen?" msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1064,119 +1074,123 @@ msgstr "" msgid "Delete this user" msgstr "Slett denne notisen" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "Ugyldig storleik." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Denne sida er ikkje tilgjengleg i eit" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "Endra passordet ditt" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "Invitér" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Endra" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Statusmelding" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 #, fuzzy msgid "Theme for the site." msgstr "Logg ut or sida" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "Du kan lasta opp ein logo for gruppa." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Endra passordet ditt" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "Kopla til" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "Søk" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Logg inn" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1188,7 +1202,7 @@ msgstr "" msgid "Save" msgstr "Lagra" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1807,13 +1821,15 @@ msgstr "Administrator" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s tidsline" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -1838,7 +1854,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Opprett ei ny gruppe" @@ -3177,7 +3193,7 @@ msgstr "Ugyldig brukarnamn eller passord." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3195,8 +3211,9 @@ msgstr "6 eller fleire teikn. Kravd." msgid "Same as password above. Required." msgstr "Samme som passord over. Påkrevd." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Epost" @@ -3339,7 +3356,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." msgid "You already repeated that notice." msgstr "Du har allereie blokkert denne brukaren." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "Lag" @@ -4329,7 +4346,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4500,28 +4518,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "%s medlemmar i gruppa, side %d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 #, fuzzy msgid "Search for more groups" msgstr "Søk etter folk eller innhald" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -4569,7 +4590,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Personleg" @@ -4734,165 +4756,181 @@ msgstr "Kunne ikkje bli med i gruppa." msgid "Could not save local group info." msgstr "Kunne ikkje lagra abonnement." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Endra profilinnstillingane dine" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Last opp ein avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Endra passordet ditt" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Endra eposthandtering" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "Brukarprofil" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Anna" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Andre val" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Anna" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s (%2$s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Ingen tittel" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personleg" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endra e-posten, avataren, passordet eller profilen" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Klarte ikkje å omdirigera til tenaren: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Kopla til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Navigasjon for hovudsida" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitér" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrér" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logg inn or sida" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4900,74 +4938,88 @@ msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Hjelp" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Om" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "OSS" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Personvern" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Kjeldekode" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:770 +#: lib/action.php:784 #, fuzzy msgid "Badge" msgstr "Dult" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er ei mikrobloggingteneste. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4978,40 +5030,51 @@ msgstr "" "%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "StatusNets programvarelisens" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "« Etter" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Før »" @@ -5718,7 +5781,8 @@ msgstr "Grupper med flest innlegg" msgid "Tags in %s group's notices" msgstr "Merkelappar i %s gruppa sine notisar" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Denne sida er ikkje tilgjengeleg i nokon mediatype du aksepterer." @@ -6017,7 +6081,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 #, fuzzy msgid "from" msgstr " frå " @@ -6147,51 +6211,55 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "Nei" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "Ingen innhald." -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "Lag" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Melding lagra" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index c3734a945f..ddc506b3be 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:11+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:21+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ 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 (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -85,9 +85,8 @@ msgstr "Zapisz" #. 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 -#, fuzzy msgid "No such page." -msgstr "Nie ma takiej strony" +msgstr "Nie ma takiej strony." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -107,7 +106,7 @@ msgstr "Nie ma takiej strony" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -121,7 +120,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -189,8 +189,10 @@ msgstr "" msgid "You and friends" msgstr "Ty i przyjaciele" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." @@ -206,13 +208,13 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -235,12 +237,11 @@ msgid "This method requires a POST." msgstr "Ta metoda wymaga POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -"Należy podać parametr o nazwie \"device\" z jedną z wartości: sms, im, none" +"Należy podać parametr o nazwie \"device\" z jedną z wartości: sms, im, none." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -251,7 +252,7 @@ msgstr "Nie można zaktualizować użytkownika." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Użytkownik nie posiada profilu." @@ -263,7 +264,7 @@ msgstr "Nie można zapisać profilu." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -441,9 +442,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Za dużo aliasów. Maksymalnie %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Nieprawidłowy alias: \"%s\"" +msgstr "Nieprawidłowy alias: \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -459,7 +460,6 @@ msgstr "Alias nie może być taki sam jak pseudonim." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." msgstr "Nie odnaleziono grupy." @@ -497,12 +497,14 @@ msgstr "Grupy użytkownika %s" msgid "%1$s groups %2$s is a member of." msgstr "%2$s jest członkiem grup %1$s." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupy %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "grupy na %s" @@ -559,7 +561,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Token żądania %s został odrzucony lub unieważniony." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -586,7 +588,8 @@ msgstr "" "uzyskać możliwość %3$s danych konta %4$s. Dostęp do konta %4" "$s powinien być udostępniany tylko zaufanym osobom trzecim." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Konto" @@ -598,8 +601,9 @@ msgstr "Konto" msgid "Nickname" msgstr "Pseudonim" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Hasło" @@ -732,8 +736,9 @@ msgstr "Brak rozmiaru." msgid "Invalid size." msgstr "Nieprawidłowy rozmiar." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Awatar" @@ -744,7 +749,7 @@ msgstr "Można wysłać osobisty awatar. Maksymalny rozmiar pliku to %s." #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Użytkownik bez odpowiadającego profilu." @@ -764,7 +769,7 @@ msgid "Preview" msgstr "Podgląd" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Usuń" @@ -900,16 +905,18 @@ msgstr "Nie odnaleziono kodu potwierdzającego." msgid "That confirmation code is not for you!" msgstr "Ten kod potwierdzający nie jest przeznaczony dla ciebie." -#: actions/confirmaddress.php:90 -#, fuzzy, php-format +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format msgid "Unrecognized address type %s." -msgstr "Nierozpoznany typ adresu %s" +msgstr "Nierozpoznany typ adresu %s." -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Ten adres został już potwierdzony." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -917,16 +924,16 @@ msgstr "Ten adres został już potwierdzony." msgid "Couldn't update user." msgstr "Nie można zaktualizować użytkownika." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Nie można usunąć potwierdzenia adresu e-mail." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Potwierdź adres" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adres \"%s\" został potwierdzony dla twojego konta." @@ -955,7 +962,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1015,7 +1022,7 @@ msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -1043,109 +1050,113 @@ msgstr "" msgid "Delete this user" msgstr "Usuń tego użytkownika" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Wygląd" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Ustawienia wyglądu tej witryny StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "Nieprawidłowy adres URL logo." -#: actions/designadminpanel.php:279 -#, fuzzy, php-format +#: actions/designadminpanel.php:280 +#, php-format msgid "Theme not available: %s." -msgstr "Motyw nie jest dostępny: %s" +msgstr "Motyw nie jest dostępny: %s." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Zmień logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logo witryny" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Zmień motyw" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Motyw witryny" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Motyw witryny." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Zmień obraz tła" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Tło" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "Można wysłać obraz tła dla witryny. Maksymalny rozmiar pliku to %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Włączone" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Wyłączone" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Włącz lub wyłącz obraz tła." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Kafelkowy obraz tła" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Zmień kolory" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Treść" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Panel boczny" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Odnośniki" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Użycie domyślnych" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Przywróć domyślny wygląd" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Przywróć domyślne ustawienia" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1157,7 +1168,7 @@ msgstr "Przywróć domyślne ustawienia" msgid "Save" msgstr "Zapisz" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Zapisz wygląd" @@ -1576,9 +1587,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Zdalna usługa używa nieznanej wersji protokołu OMB." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Błąd podczas aktualizowania zdalnego profilu" +msgstr "Błąd podczas aktualizowania zdalnego profilu." #: actions/getfile.php:79 msgid "No such file." @@ -1743,13 +1753,15 @@ msgstr "Uczyń administratorem" msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Oś czasu użytkownika %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualizacje od członków %1$s na %2$s." @@ -1779,7 +1791,7 @@ msgstr "" "która cię interesuje? Spróbuj ją [znaleźć](%%%%action.groupsearch%%%%) lub " "[założyć własną.](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Utwórz nową grupę" @@ -1945,10 +1957,10 @@ msgid "Invites have been disabled." msgstr "Zaproszenia zostały wyłączone." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." msgstr "" -"Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" +"Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s." #: actions/invite.php:72 #, php-format @@ -2180,9 +2192,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Nie można uczynić %1$s administratorem grupy %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Brak obecnego stanu" +msgstr "Brak obecnego stanu." #: actions/newapplication.php:52 msgid "New Application" @@ -2347,9 +2358,9 @@ msgid "You are not a user of that application." msgstr "Nie jesteś użytkownikiem tej aplikacji." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "Nie można unieważnić dostępu dla aplikacji: " +msgstr "Nie można unieważnić dostępu dla aplikacji: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2360,9 +2371,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "Programiści mogą zmodyfikować ustawienia rejestracji swoich aplikacji " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Wpis nie posiada profilu" +msgstr "Wpis nie posiada profilu." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2371,15 +2381,15 @@ msgstr "Stan użytkownika %1$s na %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "typ zawartości %s jest nieobsługiwany" +msgstr "Typ zawartości %s jest nieobsługiwany." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 -#, fuzzy, php-format +#, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP" +msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP." #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 @@ -2531,24 +2541,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Ustawienia ścieżki i serwera dla tej witryny StatusNet." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Katalog motywu jest nieczytelny: %s" +msgstr "Nie można odczytać katalogu motywu: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Katalog awatara jest niezapisywalny: %s" +msgstr "Nie można zapisywać w katalogu awatarów: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Katalog tła jest niezapisywalny: %s" +msgstr "Nie można zapisywać w katalogu teł: %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Katalog lokalizacji jest nieczytelny: %s" +msgstr "Nie można odczytać katalogu lokalizacji: %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2691,9 +2701,9 @@ msgid "People search" msgstr "Wyszukiwanie osób" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "Nieprawidłowy znacznik osób: %s" +msgstr "Nieprawidłowy znacznik osób: %s." #: actions/peopletag.php:142 #, php-format @@ -2701,9 +2711,8 @@ 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:95 -#, fuzzy msgid "Invalid notice content." -msgstr "Nieprawidłowa zawartość wpisu" +msgstr "Nieprawidłowa treść wpisu." #: actions/postnotice.php:101 #, php-format @@ -2847,9 +2856,9 @@ msgid "Settings saved." msgstr "Zapisano ustawienia." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Poza ograniczeniem strony (%s)" +msgstr "Poza ograniczeniem strony (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3110,8 +3119,9 @@ msgid "Invalid username or password." msgstr "Nieprawidłowa nazwa użytkownika lub hasło." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " @@ -3130,8 +3140,9 @@ msgstr "6 lub więcej znaków. Wymagane." msgid "Same as password above. Required." msgstr "Takie samo jak powyższe hasło. Wymagane." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-mail" @@ -3268,7 +3279,7 @@ msgstr "Nie można powtórzyć własnego wpisu." msgid "You already repeated that notice." msgstr "Już powtórzono ten wpis." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Powtórzono" @@ -3765,7 +3776,6 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Minimalne ograniczenie tekstu to 0 (bez ograniczenia)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." msgstr "Ograniczenie duplikatów musi wynosić jedną lub więcej sekund." @@ -3858,9 +3868,8 @@ msgid "Unable to save site notice." msgstr "Nie można zapisać wpisu witryny." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." -msgstr "Maksymalna długość wpisu witryny to 255 znaków" +msgstr "Maksymalna długość wpisu witryny to 255 znaków." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -4234,7 +4243,6 @@ msgid "User is not silenced." msgstr "Użytkownik nie jest wyciszony." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." msgstr "Brak identyfikatora profilu w żądaniu." @@ -4273,7 +4281,8 @@ msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4433,27 +4442,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Smacznego hot-doga." -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Grupy użytkownika %1$s, strona %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Wyszukaj więcej grup" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "Użytkownik %s nie jest członkiem żadnej grupy." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, 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:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualizacje z %1$s na %2$s." @@ -4515,7 +4527,8 @@ msgstr "" msgid "Plugins" msgstr "Wtyczki" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Wersja" @@ -4672,221 +4685,251 @@ msgstr "Nie można ustawić członkostwa w grupie." msgid "Could not save local group info." msgstr "Nie można zapisać informacji o lokalnej grupie." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Zmień ustawienia profilu" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Wyślij awatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Zmień hasło" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Zmień obsługę adresu e-mail" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Wygląd profilu" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Inne" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Inne opcje" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Inne" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Strona bez nazwy" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Główna nawigacja witryny" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Osobiste" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Połącz z serwisami" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Połącz" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Zmień konfigurację witryny" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Zaproś" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Wyloguj się z witryny" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Utwórz konto" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Zarejestruj się" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Zaloguj się na witrynie" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Zaloguj się" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomóż mi." -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Wyszukaj osoby lub tekst" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Wpis witryny" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Lokalne widoki" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Wpis strony" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Druga nawigacja witryny" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Pomoc" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "O usłudze" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "TOS" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Prywatność" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Kod źródłowy" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Odznaka" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** jest usługą mikroblogowania. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4897,45 +4940,56 @@ 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:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licencja zawartości witryny" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, 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:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, 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:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 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." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Wszystkie treści i dane na stronie %1$s są dostępne na warunkach licencji %2" "$s." -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Paginacja" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Później" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Wcześniej" @@ -5661,7 +5715,8 @@ msgstr "Grupy z największą ilością wpisów" msgid "Tags in %s group's notices" msgstr "Znaczniki we wpisach grupy %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Ta strona jest niedostępna dla akceptowanego typu medium" @@ -6047,7 +6102,7 @@ msgstr "" "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "twoich oczu." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "z" @@ -6175,48 +6230,52 @@ msgstr "" "Pobieranie danych geolokalizacji trwa dłużej niż powinno, proszę spróbować " "ponownie później" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "Północ" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "Południe" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "Wschód" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "Zachód" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "Północ" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "Południe" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "Wschód" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "Zachód" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "w" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "w rozmowie" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Powtórzone przez" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Odpowiedz" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Powtórzono wpis" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index ea485df0b1..28ce889834 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:14+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:24+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -107,7 +107,7 @@ msgstr "Página não encontrada." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -121,7 +121,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -187,8 +188,10 @@ msgstr "" msgid "You and friends" msgstr "Você e seus amigos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizações de %1$s e amigos no %2$s!" @@ -204,13 +207,13 @@ msgstr "Actualizações de %1$s e amigos no %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -249,7 +252,7 @@ msgstr "Não foi possível actualizar o utilizador." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Utilizador não tem perfil." @@ -261,7 +264,7 @@ msgstr "Não foi possível gravar o perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -494,12 +497,14 @@ msgstr "Grupos de %s" msgid "%1$s groups %2$s is a member of." msgstr "Grupos de que %s é membro" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupos de %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "Grupos em %s" @@ -559,7 +564,7 @@ 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/designadminpanel.php:104 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 @@ -583,7 +588,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Conta" @@ -595,8 +601,9 @@ msgstr "Conta" msgid "Nickname" msgstr "Utilizador" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Senha" @@ -731,8 +738,9 @@ msgstr "Tamanho não definido." msgid "Invalid size." msgstr "Tamanho inválido." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -743,7 +751,7 @@ msgstr "Pode carregar o seu avatar pessoal. O tamanho máximo do ficheiro é %s. #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utilizador sem perfil correspondente." @@ -763,7 +771,7 @@ msgid "Preview" msgstr "Antevisão" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Apagar" @@ -900,16 +908,18 @@ msgstr "Código de confirmação não encontrado" msgid "That confirmation code is not for you!" msgstr "Esse código de confirmação não é para si!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tipo do endereço %s não reconhecido" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Esse endereço já tinha sido confirmado." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -917,17 +927,17 @@ msgstr "Esse endereço já tinha sido confirmado." msgid "Couldn't update user." msgstr "Não foi possível actualizar o utilizador." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Não foi possível apagar a confirmação do endereço electrónico." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Confirmar Endereço" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "O endereço \"%s\" foi confirmado para a sua conta." @@ -959,7 +969,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1023,7 +1033,7 @@ msgstr "Tem a certeza de que quer apagar esta nota?" msgid "Do not delete this notice" msgstr "Não apagar esta nota" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Apagar esta nota" @@ -1051,54 +1061,56 @@ msgstr "" msgid "Delete this user" msgstr "Apagar este utilizador" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Estilo" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Configurações do estilo deste site StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "URL do logotipo inválida." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Tema não está disponível: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Alterar logotipo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logotipo do site" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Alterar tema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Tema do site" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "O tema para o site." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Alterar imagem de fundo" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Fundo" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1107,55 +1119,57 @@ msgstr "" "Pode carregar uma imagem de fundo para o site. O tamanho máximo do ficheiro " "é %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Ligar" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Desligar" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Ligar ou desligar a imagem de fundo." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Repetir imagem de fundo em mosaico" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Alterar cores" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Conteúdo" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Ligações" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Usar predefinições" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Repor estilos predefinidos" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Repor predefinição" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1167,7 +1181,7 @@ msgstr "Repor predefinição" msgid "Save" msgstr "Gravar" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Gravar o estilo" @@ -1775,13 +1789,15 @@ msgstr "Tornar Gestor" msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Notas de %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizações dos membros de %1$s em %2$s!" @@ -1811,7 +1827,7 @@ msgstr "" "encontra nenhum grupo de que gosta? Tente [pesquisar um grupo](%%action." "groupsearch%%) ou [crie o seu!](%%action.newgroup%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Criar um grupo novo" @@ -3158,8 +3174,9 @@ msgid "Invalid username or password." msgstr "Nome de utilizador ou senha inválidos." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Com este formulário pode criar uma conta nova. Poderá então publicar notas e " @@ -3178,8 +3195,9 @@ msgstr "6 ou mais caracteres. Obrigatório." msgid "Same as password above. Required." msgstr "Repita a senha acima. Obrigatório." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Correio" @@ -3316,7 +3334,7 @@ msgstr "Não pode repetir a sua própria nota." msgid "You already repeated that notice." msgstr "Já repetiu essa nota." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Repetida" @@ -4333,7 +4351,8 @@ msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4496,27 +4515,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Disfrute do seu cachorro-quente!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Membros do grupo %1$s, página %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Procurar mais grupos" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s não é membro de nenhum grupo." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, 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:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizações de %1#s a %2$s!" @@ -4575,7 +4597,8 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Versão" @@ -4738,164 +4761,180 @@ msgstr "Não foi possível configurar membros do grupo." msgid "Could not save local group info." msgstr "Não foi possível gravar a subscrição." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modificar as suas definições de perfil" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Carregar um avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Modificar a sua senha" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Alterar manuseamento de email" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Altere o estilo do seu perfil" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Outras" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Outras opções" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Outras" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s (%2$s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Página sem título" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Navegação primária deste site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e notas dos amigos" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere o seu endereço electrónico, avatar, senha, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ligar aos serviços" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Ligar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Alterar a configuração do site" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Gestor" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar esta sessão" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar uma sessão" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procurar pessoas ou pesquisar texto" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4903,73 +4942,87 @@ msgstr "Pesquisa" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso do site" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Vistas locais" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Aviso da página" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Navegação secundária deste site" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Ajuda" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Sobre" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "Termos" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Código" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contacto" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Emblema" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Licença de software do StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** é um serviço de microblogues disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é um serviço de microblogues. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4980,39 +5033,50 @@ msgstr "" "disponibilizado nos termos da [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licença de conteúdos do site" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Posteriores" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Anteriores" @@ -5739,7 +5803,8 @@ msgstr "Grupos com mais notas" msgid "Tags in %s group's notices" msgstr "Categorias nas notas do grupo %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta página não está disponível num formato que você aceite" @@ -6098,7 +6163,7 @@ msgstr "" "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "só você terá acesso." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "de" @@ -6229,48 +6294,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "E" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "O" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "E" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "O" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "coords." -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Responder a esta nota" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Nota repetida" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index b27cffde3d..490f175be7 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:17+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:28+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 (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -105,7 +105,7 @@ msgstr "Esta página não existe." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -119,7 +119,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -187,8 +188,10 @@ msgstr "" msgid "You and friends" msgstr "Você e amigos" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!" @@ -204,13 +207,13 @@ msgstr "Atualizações de %1$s e amigos no %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -250,7 +253,7 @@ msgstr "Não foi possível atualizar o usuário." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "O usuário não tem perfil." @@ -262,7 +265,7 @@ msgstr "Não foi possível salvar o perfil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -497,12 +500,14 @@ msgstr "Grupos de %s" msgid "%1$s groups %2$s is a member of." msgstr "Grupos dos quais %s é membro" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Grupos de %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "grupos no %s" @@ -563,7 +568,7 @@ msgid "The request token %s has been denied and revoked." msgstr "O token %s solicitado foi negado e revogado." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -591,7 +596,8 @@ msgstr "" "fornecer acesso à sua conta %4$s somente para terceiros nos quais você " "confia." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Conta" @@ -603,8 +609,9 @@ msgstr "Conta" msgid "Nickname" msgstr "Usuário" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Senha" @@ -737,8 +744,9 @@ msgstr "Sem tamanho definido." msgid "Invalid size." msgstr "Tamanho inválido." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -750,7 +758,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usuário sem um perfil correspondente" @@ -770,7 +778,7 @@ msgid "Preview" msgstr "Visualização" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Excluir" @@ -907,16 +915,18 @@ msgstr "O código de confirmação não foi encontrado." msgid "That confirmation code is not for you!" msgstr "Esse não é o seu código de confirmação!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tipo de endereço desconhecido %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Esse endereço já foi confirmado." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -924,16 +934,16 @@ msgstr "Esse endereço já foi confirmado." msgid "Couldn't update user." msgstr "Não foi possível atualizar o usuário." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Não foi possível excluir a confirmação de e-mail." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Confirme o endereço" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "O endereço \"%s\" foi confirmado para sua conta." @@ -962,7 +972,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1023,7 +1033,7 @@ msgstr "Tem certeza que deseja excluir esta mensagem?" msgid "Do not delete this notice" msgstr "Não excluir esta mensagem." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -1051,54 +1061,56 @@ msgstr "" msgid "Delete this user" msgstr "Excluir este usuário" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Aparência" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Configurações da aparência deste site StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "A URL da logo é inválida." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Tema não disponível: %s" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Alterar a logo" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Logo do site" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Alterar o tema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Tema do site" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Tema para o site." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Alterar imagem do fundo" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Fundo" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1107,55 +1119,57 @@ msgstr "" "Você pode enviar uma imagem de fundo para o site. O tamanho máximo do " "arquivo é de %1 $s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Ativado" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Desativado" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Ativar/desativar a imagem de fundo." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Ladrilhar a imagem de fundo" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Alterar a cor" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Conteúdo" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Links" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Usar o padrão|" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaura a aparência padrão" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Restaura de volta ao padrão" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1167,7 +1181,7 @@ msgstr "Restaura de volta ao padrão" msgid "Save" msgstr "Salvar" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Salvar a aparência" @@ -1762,13 +1776,15 @@ msgstr "Tornar administrador" msgid "Make this user an admin" msgstr "Torna este usuário um administrador" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Atualizações dos membros de %1$s no %2$s!" @@ -1798,7 +1814,7 @@ msgstr "" "\". Não encontrou um grupo que lhe agrade? Experimente [procurar por um](%%%%" "action.groupsearch%%%%) ou [criar o seu próprio!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Criar um novo grupo" @@ -3143,8 +3159,9 @@ msgid "Invalid username or password." msgstr "Nome de usuário e/ou senha inválido(s)" #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Através deste formulário você pode criar uma nova conta. A partir daí você " @@ -3163,8 +3180,9 @@ msgstr "No mínimo 6 caracteres. Obrigatório." msgid "Same as password above. Required." msgstr "Igual à senha acima. Obrigatório." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-mail" @@ -3300,7 +3318,7 @@ msgstr "Você não pode repetir sua própria mensagem." msgid "You already repeated that notice." msgstr "Você já repetiu essa mensagem." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Repetida" @@ -4303,7 +4321,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4466,29 +4485,32 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Aproveite o seu cachorro-quente!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Grupos de %1$s, pág. %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Procurar por outros grupos" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s não é membro de nenhum grupo." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, 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:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Mensagens de %1$s no %2$s!" @@ -4548,7 +4570,8 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Versão" @@ -4702,221 +4725,251 @@ msgstr "Não foi possível configurar a associação ao grupo." msgid "Could not save local group info." msgstr "Não foi possível salvar a informação do grupo local." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Alterar as suas configurações de perfil" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Enviar um avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Alterar a sua senha" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Configurações de uso do e-mail" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Mude a aparência do seu perfil" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Outras" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Outras opções" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Outras" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Página sem título" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Navegação primária no site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e fluxo de mensagens dos amigos" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere seu e-mail, avatar, senha, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conecte-se a outros serviços" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Altere as configurações do site" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Administrar" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Sair do site" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registrar-se" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Autentique-se no site" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procure por pessoas ou textos" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Pesquisar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Mensagem do site" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Visualizações locais" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Notícia da página" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Navegação secundária no site" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Ajuda" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Sobre" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "Termos de uso" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Fonte" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Contato" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Mini-aplicativo" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Licença do software StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** é um serviço de microblog disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é um serviço de microblog. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4927,41 +4980,52 @@ 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:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licença do conteúdo do site" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, 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:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, 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:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " "reservados." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Próximo" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Anterior" @@ -5687,7 +5751,8 @@ msgstr "Grupos com mais mensagens" msgid "Tags in %s group's notices" msgstr "Etiquetas nas mensagens do grupo %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta página não está disponível em um tipo de mídia que você aceita" @@ -6045,7 +6110,7 @@ msgstr "" "privadas para envolver outras pessoas em uma conversa. Você também pode " "receber mensagens privadas." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "de" @@ -6178,48 +6243,52 @@ msgstr "" "Desculpe, mas recuperar a sua geolocalização está demorando mais que o " "esperado. Por favor, tente novamente mais tarde." +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "L" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "O" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "L" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "O" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "em" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Mensagem repetida" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index a89f9b76fd..622c8352ae 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-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:20+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:31+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -85,9 +85,8 @@ msgstr "Сохранить" #. 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 -#, fuzzy msgid "No such page." -msgstr "Нет такой страницы" +msgstr "Нет такой страницы." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -107,7 +106,7 @@ msgstr "Нет такой страницы" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -121,7 +120,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -187,8 +187,10 @@ msgstr "" msgid "You and friends" msgstr "Вы и друзья" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!" @@ -204,13 +206,13 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -233,11 +235,12 @@ msgid "This method requires a POST." msgstr "Этот метод требует POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." -msgstr "Укажите параметр с именем 'device' и значением sms, im или none." +msgstr "" +"Вы должны указать параметр с именем «device» и одним из значений: sms, im, " +"none." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -248,7 +251,7 @@ msgstr "Не удаётся обновить пользователя." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "У пользователя нет профиля." @@ -260,7 +263,7 @@ msgstr "Не удаётся сохранить профиль." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -442,9 +445,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Слишком много алиасов! Максимальное число — %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Неверный алиас: «%s»" +msgstr "Ошибочный псевдоним: «%s»." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -460,9 +463,8 @@ msgstr "Алиас не может совпадать с именем." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "Группа не найдена!" +msgstr "Группа не найдена." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -498,12 +500,14 @@ msgstr "Группы %s" msgid "%1$s groups %2$s is a member of." msgstr "Группы %1$s, в которых состоит %2$s." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "Группы %s" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "группы на %s" @@ -560,7 +564,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Запрос токена %s был запрещен и аннулирован." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -588,7 +592,8 @@ msgstr "" "предоставлять разрешение на доступ к вашей учётной записи %4$s только тем " "сторонним приложениям, которым вы доверяете." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Настройки" @@ -600,8 +605,9 @@ msgstr "Настройки" msgid "Nickname" msgstr "Имя" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Пароль" @@ -734,8 +740,9 @@ msgstr "Нет размера." msgid "Invalid size." msgstr "Неверный размер." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Аватара" @@ -747,7 +754,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Пользователь без соответствующего профиля." @@ -767,7 +774,7 @@ msgid "Preview" msgstr "Просмотр" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Удалить" @@ -887,9 +894,9 @@ msgstr "Разблокировать пользователя." #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Отправить в " +msgstr "Отправить в %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -903,16 +910,18 @@ msgstr "Код подтверждения не найден." msgid "That confirmation code is not for you!" msgstr "Это не Ваш код подтверждения!" -#: actions/confirmaddress.php:90 -#, fuzzy, php-format +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format msgid "Unrecognized address type %s." -msgstr "Нераспознанный тип адреса %s" +msgstr "Нераспознанный тип адреса %s." -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Этот адрес уже подтверждён." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -920,16 +929,16 @@ msgstr "Этот адрес уже подтверждён." msgid "Couldn't update user." msgstr "Не удаётся обновить пользователя." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не удаётся удалить подверждение по электронному адресу." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Подтвердить адрес" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адрес «%s» подтверждён для вашего аккаунта." @@ -958,7 +967,7 @@ msgstr "Вы не являетесь владельцем этого прило #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." @@ -1019,7 +1028,7 @@ msgstr "Вы уверены, что хотите удалить эту запи msgid "Do not delete this notice" msgstr "Не удалять эту запись" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Удалить эту запись" @@ -1047,54 +1056,56 @@ msgstr "" msgid "Delete this user" msgstr "Удалить этого пользователя" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Оформление" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Настройки оформления для этого сайта StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "Неверный URL логотипа." -#: actions/designadminpanel.php:279 -#, fuzzy, php-format +#: actions/designadminpanel.php:280 +#, php-format msgid "Theme not available: %s." -msgstr "Тема не доступна: %s" +msgstr "Тема не доступна: %s." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Изменить логотип" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Логотип сайта" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Изменить тему" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Тема сайта" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Тема для сайта." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Изменение фонового изображения" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Фон" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1103,55 +1114,57 @@ msgstr "" "Вы можете загрузить фоновое изображение для сайта. Максимальный размер файла " "составляет %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Включить" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Отключить" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Включить или отключить показ фонового изображения." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Растянуть фоновое изображение" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Изменение цветовой гаммы" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Содержание" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Боковая панель" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Текст" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Ссылки" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Использовать значения по умолчанию" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Восстановить оформление по умолчанию" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Восстановить значения по умолчанию" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1163,7 +1176,7 @@ msgstr "Восстановить значения по умолчанию" msgid "Save" msgstr "Сохранить" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Сохранить оформление" @@ -1591,9 +1604,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Удалённый сервис использует неизвестную версию протокола OMB." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Ошибка обновления удалённого профиля" +msgstr "Ошибка обновления удалённого профиля." #: actions/getfile.php:79 msgid "No such file." @@ -1762,13 +1774,15 @@ msgstr "Сделать администратором" msgid "Make this user an admin" msgstr "Сделать этого пользователя администратором" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "Лента %s" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Обновления участников %1$s на %2$s!" @@ -1798,7 +1812,7 @@ msgstr "" "группу, которая вас интересует? Попробуйте [найти её](%%%%action.groupsearch%" "%%%) или [создайте собственную](%%%%action.newgroup%%%%)!" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Создать новую группу" @@ -1966,11 +1980,11 @@ msgid "Invites have been disabled." msgstr "Приглашения отключены." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." msgstr "" -"Вы должны авторизоваться, чтобы приглашать других пользователей следовать за " -"%s" +"Вы должны авторизоваться, чтобы приглашать других пользователей использовать " +"%s." #: actions/invite.php:72 #, php-format @@ -2200,9 +2214,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Невозможно сделать %1$s администратором группы %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Нет текущего статуса" +msgstr "Нет текущего состояния." #: actions/newapplication.php:52 msgid "New Application" @@ -2366,9 +2379,9 @@ msgid "You are not a user of that application." msgstr "Вы не являетесь пользователем этого приложения." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "Не удаётся отозвать права для приложения: " +msgstr "Не удаётся отозвать доступ для приложения: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2379,9 +2392,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "Разработчики могут изменять настройки регистрации своих приложений " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Запись без профиля" +msgstr "Уведомление не имеет профиля." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2390,15 +2402,15 @@ msgstr "Статус %1$s на %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "тип содержимого " +msgstr "Тип содержимого %s не поддерживается." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "Только %s URL в простом HTTP, пожалуйста." #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 @@ -2552,24 +2564,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Настройки путей и серверов для этого сайта StatusNet." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Директория тем недоступна для чтения: %s" +msgstr "Директория тем не доступна для чтения: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Директория аватар не доступна для записи: %s" +msgstr "Директория аватар не доступна для записи: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Директория фоновых изображений не доступна для записи: %s" +msgstr "Директория фоновых изображений не доступна для записи: %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Директория локализаций не доступна для чтения: %s" +msgstr "Директория локализаций не доступна для чтения: %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2709,9 +2721,9 @@ msgid "People search" msgstr "Поиск людей" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "Неверный тег человека: %s" +msgstr "Неверный тег человека: %s." #: actions/peopletag.php:142 #, php-format @@ -2719,9 +2731,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Пользователи, установившие себе тег %1$s — страница %2$d" #: actions/postnotice.php:95 -#, fuzzy msgid "Invalid notice content." -msgstr "Неверный контент записи" +msgstr "Ошибочное содержание записи." #: actions/postnotice.php:101 #, php-format @@ -2864,9 +2875,9 @@ msgid "Settings saved." msgstr "Настройки сохранены." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Превышен предел страницы (%s)" +msgstr "Превышен предел страницы (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3127,8 +3138,9 @@ msgid "Invalid username or password." msgstr "Неверное имя или пароль." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " @@ -3149,8 +3161,9 @@ msgstr "6 или более символов. Обязательное поле. msgid "Same as password above. Required." msgstr "Тот же пароль что и сверху. Обязательное поле." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Email" @@ -3163,13 +3176,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Полное имя, предпочтительно Ваше настоящее имя" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -", за исключением моей личной информации: пароля, почты, мессенджера и номера " -"телефона." +"Мои тексты и файлы доступны на условиях %s, за исключением следующей личной " +"информации: пароля, почтового адреса, номера мессенджера и номера телефона." #: actions/register.php:542 #, php-format @@ -3284,7 +3297,7 @@ msgstr "Вы не можете повторить собственную зап msgid "You already repeated that notice." msgstr "Вы уже повторили эту запись." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Повторено" @@ -3784,9 +3797,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Минимальное ограничение текста составляет 0 (без ограничений)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." -msgstr "Ограничение дублирования должно составлять 1 или более секунд." +msgstr "Ограничение дублирования должно составлять одну или более секунд." #: actions/siteadminpanel.php:221 msgid "General" @@ -3877,9 +3889,8 @@ msgid "Unable to save site notice." msgstr "Не удаётся сохранить уведомление сайта." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." -msgstr "Максимальная длина уведомления сайта составляет 255 символов" +msgstr "Максимальная длина уведомления сайта составляет 255 символов." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -4254,7 +4265,6 @@ msgid "User is not silenced." msgstr "Пользователь не заглушён." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." msgstr "Нет ID профиля в запросе." @@ -4293,7 +4303,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профиль" @@ -4454,28 +4465,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Приятного аппетита!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Группы %1$s, страница %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Искать другие группы" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s не состоит ни в одной группе." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Попробуйте [найти группы](%%action.groupsearch%%) и присоединиться к ним." -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" @@ -4535,7 +4549,8 @@ msgstr "" msgid "Plugins" msgstr "Плагины" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Версия" @@ -4689,221 +4704,251 @@ msgstr "Не удаётся назначить членство в группе. msgid "Could not save local group info." msgstr "Не удаётся сохранить информацию о локальной группе." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Изменить ваши настройки профиля" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Загрузить аватару" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Измените свой пароль" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Изменить электронный адрес" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Оформить ваш профиль" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Другое" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Другие опции" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Другое" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Страница без названия" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Главная навигация" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Личное" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Изменить ваш email, аватар, пароль, профиль" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Соединить с сервисами" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Соединить" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Изменить конфигурацию сайта" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Настройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Пригласите друзей и коллег стать такими же как Вы участниками %s" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Пригласить" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Выйти" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Выход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создать новый аккаунт" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Регистрация" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Войти" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощь" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Помощь" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Искать людей или текст" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Новая запись" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Локальные виды" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Новая запись" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Навигация по подпискам" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Помощь" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "О проекте" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "ЧаВо" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "TOS" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Пользовательское соглашение" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Исходный код" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Контактная информация" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Бедж" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "StatusNet лицензия" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" "%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** — сервис микроблогинга. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4915,42 +4960,53 @@ msgstr "" "лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Лицензия содержимого сайта" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содержание и данные %1$s являются личными и конфиденциальными." -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат %1$s. Все права защищены." -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат разработчикам. Все права " "защищены." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "" +msgstr "Все материалы и данные %1$s доступны на условиях лицензии %2$s." -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Разбиение на страницы" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Сюда" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Туда" @@ -5672,7 +5728,8 @@ msgstr "Группы с наибольшим количеством записе msgid "Tags in %s group's notices" msgstr "Теги записей группы %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Страница недоступна для того типа, который Вы задействовали." @@ -5854,9 +5911,9 @@ msgstr "Подтверждение СМС" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "В ожидании подтверждения данного номера телефона." +msgstr "%s. Подтвердите, что это ваш телефон, следующим кодом:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 @@ -5984,6 +6041,9 @@ msgid "" "\n" "\t%s" msgstr "" +"Всю цепочку можно прочитать здесь:\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format @@ -6017,6 +6077,28 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%1$s (@%9$s) отправил вам сообщение («@-ответ») на %2$s.\n" +"\n" +"Сообщение находится здесь:\n" +"\n" +"%3$s\n" +"\n" +"В нём говорится:\n" +"\n" +"%4$s\n" +"\n" +"%5$sВы можете ответить здесь:\n" +"\n" +"%6$s\n" +"\n" +"Список всех @-ответов для вас находится здесь:\n" +"\n" +"%7$s\n" +"\n" +"С уважением,\n" +"%2$s\n" +"\n" +"PS Вы можете отключить эти уведомления по электронной почте здесь: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6031,7 +6113,7 @@ msgstr "" "вовлечения других пользователей в разговор. Сообщения, получаемые от других " "людей, видите только вы." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "от " @@ -6161,48 +6243,52 @@ msgstr "" "К сожалению, получение информации о вашем местонахождении заняло больше " "времени, чем ожидалось; повторите попытку позже" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "с. ш." + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "ю. ш." + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "в. д." + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "з. д." + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "с. ш." - -#: lib/noticelist.php:431 -msgid "S" -msgstr "ю. ш." - -#: lib/noticelist.php:432 -msgid "E" -msgstr "в. д." - -#: lib/noticelist.php:432 -msgid "W" -msgstr "з. д." - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "на" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "в контексте" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Запись повторена" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 20ea4c1391..923d50e40a 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 23:15+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -98,7 +98,7 @@ msgstr "" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -112,7 +112,8 @@ msgstr "" #. 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 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -171,8 +172,10 @@ msgstr "" msgid "You and friends" msgstr "" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -188,13 +191,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -231,7 +234,7 @@ msgstr "" #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "" @@ -243,7 +246,7 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -471,12 +474,14 @@ msgstr "" msgid "%1$s groups %2$s is a member of." msgstr "" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "" @@ -532,7 +537,7 @@ 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/designadminpanel.php:104 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 @@ -556,7 +561,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "" @@ -568,8 +574,9 @@ msgstr "" msgid "Nickname" msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "" @@ -702,8 +709,9 @@ msgstr "" msgid "Invalid size." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "" @@ -714,7 +722,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "" @@ -734,7 +742,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "" @@ -867,16 +875,18 @@ msgstr "" msgid "That confirmation code is not for you!" msgstr "" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, php-format msgid "Unrecognized address type %s." msgstr "" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -884,16 +894,16 @@ msgstr "" msgid "Couldn't update user." msgstr "" -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -922,7 +932,7 @@ msgstr "" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -978,7 +988,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1004,109 +1014,113 @@ msgstr "" msgid "Delete this user" msgstr "" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "" -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, php-format msgid "Theme not available: %s." msgstr "" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, 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 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1118,7 +1132,7 @@ msgstr "" msgid "Save" msgstr "" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1688,13 +1702,15 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" @@ -1719,7 +1735,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "" @@ -2956,7 +2972,7 @@ msgstr "" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -2972,8 +2988,9 @@ msgstr "" msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "" @@ -3086,7 +3103,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "" @@ -4018,7 +4035,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" @@ -4170,27 +4188,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4238,7 +4259,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "" @@ -4386,219 +4408,249 @@ msgstr "" msgid "Could not save local group info." msgstr "" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" -#: lib/action.php:805 +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 #, php-format -msgid "**%%site.name%%** is a microblogging service. " +msgid "**%%site.name%%** is a microblogging service." msgstr "" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4606,39 +4658,50 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "" @@ -5305,7 +5368,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5589,7 +5653,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "" @@ -5714,48 +5778,52 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 00c4a2376e..aeb3782a22 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:23+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:34+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -81,7 +81,6 @@ msgstr "Spara" #. 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 -#, fuzzy msgid "No such page." msgstr "Ingen sådan sida" @@ -103,7 +102,7 @@ msgstr "Ingen sådan sida" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -117,7 +116,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,8 +183,10 @@ msgstr "" msgid "You and friends" msgstr "Du och vänner" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!" @@ -200,13 +202,13 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -229,7 +231,6 @@ msgid "This method requires a POST." msgstr "Denna metod kräver en POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -244,7 +245,7 @@ msgstr "Kunde inte uppdatera användare." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Användaren har ingen profil." @@ -256,7 +257,7 @@ msgstr "Kunde inte spara profil." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -405,7 +406,7 @@ msgstr "Inte ett giltigt smeknamn." #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:217 msgid "Homepage is not a valid URL." -msgstr "Hemsida är inte en giltig URL." +msgstr "Hemsida är inte en giltig webbadress." #: actions/apigroupcreate.php:207 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 @@ -432,9 +433,9 @@ msgid "Too many aliases! Maximum %d." msgstr "För många alias! Maximum %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Ogiltigt alias: \"%s\"" +msgstr "Ogiltigt alias: \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -450,9 +451,8 @@ msgstr "Alias kan inte vara samma som smeknamn." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "Grupp hittades inte!" +msgstr "Grupp hittades inte." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -488,12 +488,14 @@ msgstr "%ss grupper" msgid "%1$s groups %2$s is a member of." msgstr "%1$s grupper %2$s är en medlem i." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s grupper" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "grupper på %s" @@ -549,7 +551,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Begäran-token %s har nekats och återkallats." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -576,7 +578,8 @@ msgstr "" "möjligheten att %3$s 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 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Konto" @@ -588,8 +591,9 @@ msgstr "Konto" msgid "Nickname" msgstr "Smeknamn" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Lösenord" @@ -647,7 +651,7 @@ msgstr "Hittades inte." #: actions/apistatusesupdate.php:225 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." -msgstr "Maximal notisstorlek är %d tecken, inklusive URL för bilaga." +msgstr "Maximal notisstorlek är %d tecken, inklusive webbadress för bilaga." #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 msgid "Unsupported format." @@ -722,8 +726,9 @@ msgstr "Ingen storlek." msgid "Invalid size." msgstr "Ogiltig storlek." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -735,7 +740,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Användare utan matchande profil." @@ -755,7 +760,7 @@ msgid "Preview" msgstr "Förhandsgranska" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Ta bort" @@ -876,9 +881,9 @@ msgstr "Häv blockering av denna användare" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Posta till " +msgstr "Posta till %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -892,16 +897,18 @@ msgstr "Bekräftelsekod kunde inte hittas." msgid "That confirmation code is not for you!" msgstr "Denna bekräftelsekod är inte för dig!" -#: actions/confirmaddress.php:90 -#, fuzzy, php-format +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format msgid "Unrecognized address type %s." -msgstr "Adresstypen %s känns inte igen" +msgstr "Adresstypen %s känns inte igen." -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Denna adress har redan blivit bekräftad." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -909,16 +916,16 @@ msgstr "Denna adress har redan blivit bekräftad." msgid "Couldn't update user." msgstr "Kunde inte uppdatera användare." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kunde inte ta bort e-postbekräftelse." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Bekräfta adress" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." @@ -947,7 +954,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1008,7 +1015,7 @@ msgstr "Är du säker på att du vill ta bort denna notis?" msgid "Do not delete this notice" msgstr "Ta inte bort denna notis" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -1036,54 +1043,56 @@ msgstr "" msgid "Delete this user" msgstr "Ta bort denna användare" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Utseende" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Utseendeinställningar för denna StatusNet-webbplats." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." -msgstr "Ogiltig logtyp-URL." +msgstr "Ogiltig webbadress för logtyp." -#: actions/designadminpanel.php:279 -#, fuzzy, php-format +#: actions/designadminpanel.php:280 +#, php-format msgid "Theme not available: %s." -msgstr "Tema inte tillgängligt: %s" +msgstr "Tema inte tillgängligt: %s." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Byt logotyp" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Webbplatslogotyp" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Byt tema" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Webbplatstema" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Tema för webbplatsen." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Ändra bakgrundsbild" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Bakgrund" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1092,55 +1101,57 @@ msgstr "" "Du kan ladda upp en bakgrundsbild för denna webbplats. Den maximala " "filstorleken är %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "På" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Av" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Sätt på eller stäng av bakgrundsbild." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Upprepa bakgrundsbild" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Byt färger" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Innehåll" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Sidofält" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Länkar" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "Använd standardvärden" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Återställ standardutseende" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Återställ till standardvärde" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1152,7 +1163,7 @@ msgstr "Återställ till standardvärde" msgid "Save" msgstr "Spara" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Spara utseende" @@ -1204,11 +1215,11 @@ msgstr "Beskrivning krävs." #: actions/editapplication.php:194 msgid "Source URL is too long." -msgstr "URL till källa är för lång." +msgstr "Webbadress till källa är för lång." #: actions/editapplication.php:200 actions/newapplication.php:185 msgid "Source URL is not valid." -msgstr "URL till källa är inte giltig." +msgstr "Webbadress till källa är inte giltig." #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." @@ -1228,7 +1239,7 @@ msgstr "Anrop är för lång." #: actions/editapplication.php:225 actions/newapplication.php:215 msgid "Callback URL is not valid." -msgstr "URL för anrop är inte giltig." +msgstr "Webbadress för anrop är inte giltig." #: actions/editapplication.php:258 msgid "Could not update application." @@ -1571,9 +1582,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjärrtjänsten använder en okänd version av OMB-protokollet." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Fel vid uppdatering av fjärrprofil" +msgstr "Fel vid uppdatering av fjärrprofil." #: actions/getfile.php:79 msgid "No such file." @@ -1741,13 +1751,15 @@ 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:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s tidslinje" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Uppdateringar från medlemmar i %1$s på %2$s!" @@ -1777,7 +1789,7 @@ msgstr "" "inte någon grupp du gillar? Prova att [söka efter en](%%%%action.groupsearch%" "%%%) eller [starta din egen!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Skapa en ny grupp" @@ -1944,9 +1956,9 @@ msgid "Invites have been disabled." msgstr "Inbjudningar har blivit inaktiverade." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "Du måste vara inloggad för att kunna bjuda in andra användare till %s" +msgstr "Du måste vara inloggad för att kunna bjuda in andra användare till %s." #: actions/invite.php:72 #, php-format @@ -2177,9 +2189,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Kan inte göra %1$s till en administratör för grupp %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Ingen aktuell status" +msgstr "Ingen aktuell status." #: actions/newapplication.php:52 msgid "New Application" @@ -2195,7 +2206,7 @@ msgstr "Använd detta formulär för att registrera en ny applikation." #: actions/newapplication.php:176 msgid "Source URL is required." -msgstr "URL till källa krävs." +msgstr "Webbadress till källa krävs." #: actions/newapplication.php:258 actions/newapplication.php:267 msgid "Could not create application." @@ -2345,9 +2356,9 @@ msgid "You are not a user of that application." msgstr "Du är inte en användare av den applikationen." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "Kunde inte återkalla åtkomst för applikation: " +msgstr "Kunde inte återkalla åtkomst för applikation: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2359,9 +2370,8 @@ msgstr "" "Utvecklare kan redigera registreringsinställningarna för sina applikationer " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Notisen har ingen profil" +msgstr "Notisen har ingen profil." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2370,15 +2380,15 @@ msgstr "%1$ss status den %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "innehållstyp " +msgstr "Innehållstyp %s stödjs inte." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "Endast %s-webbadresser över vanlig HTTP." #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 @@ -2530,24 +2540,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Sökvägs- och serverinställningar för denna StatusNet-webbplats." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Katalog med teman är inte läsbar: %s" +msgstr "Katalog med teman är inte läsbar: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Katalog med avatarer är inte skrivbar: %s" +msgstr "Katalog med avatarer är inte skrivbar: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Katalog med bakgrunder är inte skrivbar: %s" +msgstr "Katalog med bakgrunder är inte skrivbar: %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Katalog med lokaliseringfiler (locales) är inte läsbar. %s" +msgstr "Katalog med lokaliseringfiler (locales) är inte läsbar. %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2688,9 +2698,9 @@ msgid "People search" msgstr "Personsökning" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "Inte en giltig persontagg: %s" +msgstr "Inte en giltig persontagg: %s." #: actions/peopletag.php:142 #, php-format @@ -2698,9 +2708,8 @@ 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:95 -#, fuzzy msgid "Invalid notice content." -msgstr "Ogiltigt notisinnehåll" +msgstr "Ogiltigt notisinnehåll." #: actions/postnotice.php:101 #, php-format @@ -2845,9 +2854,9 @@ msgid "Settings saved." msgstr "Inställningar sparade." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Bortom sidbegränsningen (%s)" +msgstr "Bortom sidbegränsningen (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3108,8 +3117,9 @@ msgid "Invalid username or password." msgstr "Ogiltigt användarnamn eller lösenord." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Med detta formulär kan du skapa ett nytt konto. Du kan sedan posta notiser " @@ -3129,8 +3139,9 @@ msgstr "Minst 6 tecken. Måste fyllas i." msgid "Same as password above. Required." msgstr "Samma som lösenordet ovan. Måste fyllas i." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "E-post" @@ -3145,13 +3156,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Längre namn, förslagsvis ditt \"verkliga\" namn" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -"med undantag av den här privata datan: lösenord, e-postadress, IM-adress, " -"telefonnummer." +"Mina texter och filer är tillgängliga under %s med undantag av den här " +"privata datan: lösenord, e-postadress, IM-adress, telefonnummer." #: actions/register.php:542 #, php-format @@ -3269,7 +3280,7 @@ msgstr "Du kan inte upprepa din egna notis." msgid "You already repeated that notice." msgstr "Du har redan upprepat denna notis." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Upprepad" @@ -3764,9 +3775,8 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Minsta textbegränsning är 0 (obegränsat)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." -msgstr "Begränsning av duplikat måste vara en eller fler sekuner." +msgstr "Duplikatgräns måste vara en eller fler sekuner." #: actions/siteadminpanel.php:221 msgid "General" @@ -3856,9 +3866,8 @@ msgid "Unable to save site notice." msgstr "Kunde inte spara webbplatsnotis." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." -msgstr "Maximal längd för webbplatsnotisen är 255 tecken" +msgstr "Maximal längd för webbplatsnotisen är 255 tecken." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -4229,7 +4238,6 @@ msgid "User is not silenced." msgstr "Användare är inte nedtystad." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." msgstr "Ingen profil-ID i begäran." @@ -4268,7 +4276,8 @@ msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken." msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4432,28 +4441,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Smaklig måltid!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s grupper, sida %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Sök efter fler grupper" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s är inte en medlem i någon grupp." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, 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:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" @@ -4513,7 +4525,8 @@ msgstr "" msgid "Plugins" msgstr "Insticksmoduler" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Version" @@ -4667,221 +4680,251 @@ msgstr "Kunde inte ställa in gruppmedlemskap." msgid "Could not save local group info." msgstr "Kunde inte spara lokal gruppinformation." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Ändra dina profilinställningar" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Ladda upp en avatar" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Ändra ditt lösenord" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Ändra e-posthantering" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Designa din profil" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Övrigt" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Övriga alternativ" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Övrigt" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Namnlös sida" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Primär webbplatsnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personlig profil och vänners tidslinje" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Personligt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändra din e-post, avatar, lösenord, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Anslut till tjänster" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Anslut" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ändra webbplatskonfiguration" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Administratör" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Bjud in" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logga ut från webbplatsen" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Logga ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skapa ett konto" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Registrera" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logga in på webbplatsen" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Logga in" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjälp mig!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Hjälp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Sök efter personer eller text" -#: lib/action.php:490 +#: lib/action.php:493 msgctxt "MENU" msgid "Search" msgstr "Sök" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Webbplatsnotis" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Lokala vyer" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Sidnotis" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Sekundär webbplatsnavigation" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Hjälp" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Om" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "Frågor & svar" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "Användarvillkor" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Sekretess" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Källa" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Emblem" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Programvarulicens för StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** är en mikrobloggtjänst tillhandahållen av [%%site.broughtby" "%%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** är en mikrobloggtjänst. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4892,40 +4935,51 @@ msgstr "" "version %s, tillgänglig under [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Licens för webbplatsinnehåll" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, 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:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, 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:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "" +msgstr "Innehåll och data på %1$s är tillgänglig under licensen %2$s." -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Numrering av sidor" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Senare" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Tidigare" @@ -5642,7 +5696,8 @@ msgstr "Grupper med flest inlägg" msgid "Tags in %s group's notices" msgstr "Taggar i %s grupps notiser" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" @@ -5823,9 +5878,9 @@ msgstr "SMS-bekräftelse" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "Väntar bekräftelse för detta telefonnummer." +msgstr "%s: bekräfta detta telefonnummer med denna kod:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 @@ -5953,6 +6008,9 @@ msgid "" "\n" "\t%s" msgstr "" +"Hela konversationen kan läsas här:\n" +"\n" +"\t%s" #: lib/mail.php:651 #, php-format @@ -5986,6 +6044,28 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%1$s (@%9$s) skickade precis en notis för din uppmärksamhet (ett '@-svar') " +"på %2$s.\n" +"\n" +"Notisen är här:\n" +"\n" +"\t%3$s\n" +"\n" +"Den lyder:\n" +"\n" +"\t%4$s\n" +"\n" +"%5$sDu kan svara här:\n" +"\n" +"\t%6$s\n" +"\n" +"Listan med alla @-svar till dig hittar du här:\n" +"%7$s\n" +"\n" +"Med vänliga hälsningar,\n" +"%2$s\n" +"\n" +"P.S. Du kan stänga av dessa e-postnotifikationer här: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6000,7 +6080,7 @@ msgstr "" "engagera andra användare i konversationen. Folk kan skicka meddelanden till " "dig som bara du ser." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "från" @@ -6131,48 +6211,52 @@ msgstr "" "Tyvärr, hämtning av din geografiska plats tar längre tid än förväntat, var " "god försök igen senare" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "S" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "Ö" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "V" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "N" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "S" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "Ö" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "V" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "på" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "i sammanhang" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Upprepad av" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Svara på denna notis" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Notis upprepad" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 6a5c982828..186c5ad152 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:29+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:37+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -80,9 +80,8 @@ msgstr "భద్రపరచు" #. 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 -#, fuzzy msgid "No such page." -msgstr "అటువంటి పేజీ లేదు" +msgstr "అటువంటి పేజీ లేదు." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -102,7 +101,7 @@ msgstr "అటువంటి పేజీ లేదు" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -116,7 +115,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -175,8 +175,10 @@ msgstr "" msgid "You and friends" msgstr "మీరు మరియు మీ స్నేహితులు" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -192,13 +194,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -237,7 +239,7 @@ msgstr "వాడుకరిని తాజాకరించలేకున #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." @@ -250,7 +252,7 @@ msgstr "ప్రొఫైలుని భద్రపరచలేకున్ #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -295,7 +297,7 @@ msgstr "%s నుండి నేరు సందేశాలు" #: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" -msgstr "" +msgstr "%s నుండి పంపిన అన్ని నేరు సందేశాలు" #: actions/apidirectmessage.php:101 #, php-format @@ -305,7 +307,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!" @@ -322,7 +324,7 @@ msgstr "అందుకోవాల్సిన వాడుకరి కనబ #: actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" +msgstr "మీ స్నేహితులు కాని వాడుకరులకి నేరు సందేశాలు పంపించలేరు." #: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 #: actions/apistatusesdestroy.php:113 @@ -360,9 +362,8 @@ msgid "Could not unfollow user: User not found." msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" #: actions/apifriendshipsdestroy.php:120 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "మిమ్మల్ని మీరే నిరోధించుకోలేరు!" +msgstr "మిమ్మల్ని మీరే అననుసరించలేరు." #: actions/apifriendshipsexists.php:94 msgid "Two user ids or screen_names must be supplied." @@ -427,9 +428,9 @@ msgid "Too many aliases! Maximum %d." msgstr "చాలా మారుపేర్లు! %d గరిష్ఠం." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "తప్పుడు మారుపేరు: \"%s\"" +msgstr "తప్పుడు మారుపేరు: \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -445,9 +446,8 @@ msgstr "మారుపేరు పేరుతో సమానంగా ఉం #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "గుంపు దొరకలేదు!" +msgstr "గుంపు దొరకలేదు." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -458,18 +458,18 @@ msgid "You have been blocked from that group by the admin." msgstr "నిర్వాహకులు ఆ గుంపు నుండి మిమ్మల్ని నిరోధించారు." #: actions/apigroupjoin.php:138 actions/joingroup.php:134 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" +msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "మీరు ఈ గుంపులో సభ్యులు కాదు." #: actions/apigroupleave.php:124 actions/leavegroup.php:129 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం." +msgstr "వాడుకరి %1$sని %2$s గుంపు నుండి తొలగించలేకపోయాం." #. TRANS: %s is a user name #: actions/apigrouplist.php:97 @@ -479,16 +479,18 @@ msgstr "%s యొక్క గుంపులు" #. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s #: actions/apigrouplist.php:107 -#, fuzzy, php-format +#, php-format msgid "%1$s groups %2$s is a member of." -msgstr "%s సభ్యులుగా ఉన్న గుంపులు" +msgstr "%2$s సభ్యులుగా ఉన్న %2$s గుంపులు." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s గుంపులు" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "%s పై గుంపులు" @@ -547,7 +549,7 @@ 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/designadminpanel.php:104 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 @@ -571,7 +573,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "ఖాతా" @@ -583,8 +586,9 @@ msgstr "ఖాతా" msgid "Nickname" msgstr "పేరు" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "సంకేతపదం" @@ -718,8 +722,9 @@ msgstr "పరిమాణం లేదు." msgid "Invalid size." msgstr "తప్పుడు పరిమాణం." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "అవతారం" @@ -730,7 +735,7 @@ msgstr "మీ వ్యక్తిగత అవతారాన్ని మీ #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." @@ -751,7 +756,7 @@ msgid "Preview" msgstr "మునుజూపు" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "తొలగించు" @@ -889,16 +894,18 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." msgid "That confirmation code is not for you!" msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/confirmaddress.php:90 -#, fuzzy, php-format +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format msgid "Unrecognized address type %s." -msgstr "గుర్తుతెలియని చిరునామా రకం %s" +msgstr "గుర్తుతెలియని చిరునామా రకం %s." -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధారితమైంది." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -906,16 +913,16 @@ msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధా msgid "Couldn't update user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "చిరునామాని నిర్ధారించు" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి నిర్ధారితమైంది." @@ -944,7 +951,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -1002,7 +1009,7 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించకు" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -1030,109 +1037,113 @@ msgstr "" msgid "Delete this user" msgstr "ఈ వాడుకరిని తొలగించు" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "రూపురేఖలు" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "ఈ స్టేటస్‌నెట్ సైటుకి రూపురేఖల అమరికలు." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "చిహ్నపు URL చెల్లదు." -#: actions/designadminpanel.php:279 -#, fuzzy, php-format +#: actions/designadminpanel.php:280 +#, php-format msgid "Theme not available: %s." -msgstr "అలంకారం అందుబాటులో లేదు: %s" +msgstr "అలంకారం అందుబాటులో లేదు: %s." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "చిహ్నాన్ని మార్చు" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "సైటు చిహ్నం" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "అలంకారాన్ని మార్చు" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "సైటు అలంకారం" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "సైటుకి అలంకారం." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "నేపథ్య చిత్రాన్ని మార్చు" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "నేపథ్యం" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "సైటుకి మీరు నేపథ్యపు చిత్రాన్ని ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం %1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "రంగులను మార్చు" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "విషయం" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "పక్కపట్టీ" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "పాఠ్యం" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "లంకెలు" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1144,7 +1155,7 @@ msgstr "" msgid "Save" msgstr "భద్రపరచు" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "రూపురేఖలని భద్రపరచు" @@ -1362,7 +1373,7 @@ msgstr "" #: actions/emailsettings.php:185 msgid "I want to post notices by email." -msgstr "" +msgstr "నేను ఈమెయిలు ద్వారా నోటీసులు పంపాలనుకుంటున్నాను." #: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." @@ -1724,13 +1735,15 @@ msgstr "నిర్వాహకున్ని చేయి" msgid "Make this user an admin" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s కాలరేఖ" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%s యొక్క మైక్రోబ్లాగు" @@ -1759,7 +1772,7 @@ msgstr "" "గుంపు లోని సభ్యులందరికీ సందేశాలని పంపించవచ్చు. మీకు నచ్చిన గుంపు కనబడలేదా? [దాని కోసం వెతకండి](%%" "%%action.groupsearch%%%%) లేదా [మీరే కొత్తది సృష్టించండి!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "కొత్త గుంపుని సృష్టించు" @@ -1913,9 +1926,9 @@ msgid "Invites have been disabled." msgstr "ఆహ్వానాలని అచేతనం చేసారు." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "%sని ఉపయోగించమని ఇతర వాడుకరులని ఆహ్వానించడానికి మీరు ప్రవేశించి ఉండాలి" +msgstr "sని ఉపయోగించమని ఇతర వాడుకరులని ఆహ్వానించడానికి మీరు ప్రవేశించి ఉండాలి." #: actions/invite.php:72 #, php-format @@ -2109,9 +2122,9 @@ msgid "Can't get membership record for %1$s in group %2$s." msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం" #: actions/makeadmin.php:146 -#, fuzzy, php-format +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "%s ఇప్పటికే \"%s\" గుంపు యొక్క ఒక నిర్వాకులు." +msgstr "%1$sని %2$s గుంపు యొక్క నిర్వాహకున్ని చేయలేకపోయాం." #: actions/microsummary.php:69 #, fuzzy @@ -2596,7 +2609,7 @@ msgstr "ఎల్లప్పుడూ" #: actions/pathsadminpanel.php:329 msgid "Use SSL" -msgstr "" +msgstr "SSLని ఉపయోగించు" #: actions/pathsadminpanel.php:330 msgid "When to use SSL" @@ -3034,7 +3047,7 @@ msgstr "వాడుకరిపేరు లేదా సంకేతపదం #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3050,8 +3063,9 @@ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షర msgid "Same as password above. Required." msgstr "పై సంకేతపదం మరోసారి. తప్పనిసరి." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "ఈమెయిల్" @@ -3183,7 +3197,7 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి msgid "You already repeated that notice." msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "సృష్టితం" @@ -3634,9 +3648,8 @@ msgid "User is already silenced." msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." #: actions/siteadminpanel.php:69 -#, fuzzy msgid "Basic settings for this StatusNet site" -msgstr "ఈ స్టేటస్‌నెట్ సైటుకి ప్రాధమిక అమరికలు." +msgstr "ఈ స్టేటస్‌నెట్ సైటుకి ప్రాధమిక అమరికలు" #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -3652,9 +3665,8 @@ msgid "Unknown language \"%s\"." msgstr "గుర్తు తెలియని భాష \"%s\"." #: actions/siteadminpanel.php:165 -#, fuzzy msgid "Minimum text limit is 0 (unlimited)." -msgstr "కనిష్ఠ పాఠ్య పరిమితి 140 అక్షరాలు." +msgstr "కనిష్ఠ పాఠ్య పరిమితి 0 (అపరిమితం)." #: actions/siteadminpanel.php:171 msgid "Dupe limit must be one or more seconds." @@ -4147,7 +4159,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "ప్రొఫైలు" @@ -4300,27 +4313,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "%1$s గుంపులు, %2$dవ పేజీ" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "మరిన్ని గుంపులకై వెతుకు" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s ఏ గుంపు లోనూ సభ్యులు కాదు." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[గుంపులని వెతికి](%%action.groupsearch%%) వాటిలో చేరడానికి ప్రయత్నించండి." -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4368,7 +4384,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "సంచిక" @@ -4524,225 +4541,255 @@ msgstr "గుంపు సభ్యత్వాన్ని అమర్చల msgid "Could not save local group info." msgstr "చందాని సృష్టించలేకపోయాం." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "ఒక అవతారాన్ని ఎక్కించండి" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "మీ సంకేతపదాన్ని మార్చుకోండి" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "ఇతర" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "ఇతర ఎంపికలు" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "ఇతర" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "శీర్షికలేని పేజీ" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "వ్యక్తిగత" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "అనుసంధానాలు" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "అనుసంధానించు" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "సైటు స్వరూపణాన్ని మార్చండి" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "నిర్వాహకులు" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "ఈ ఫారాన్ని ఉపయోగించి మీ స్నేహితులను మరియు సహోద్యోగులను ఈ సేవను వినియోగించుకోమని ఆహ్వానించండి." -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "ఆహ్వానించు" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "సైటు నుండి నిష్క్రమించు" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "నిష్క్రమించు" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "ఖాతాని సృష్టించుకోండి" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "నమోదు" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "సైటు లోనికి ప్రవేశించండి" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "ప్రవేశించు" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "సహాయం కావాలి!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "సహాయం" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ప్రజలు లేదా పాఠ్యం కొరకు వెతకండి" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "సైటు గమనిక" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "స్థానిక వీక్షణలు" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "పేజీ గమనిక" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 #, fuzzy msgid "Secondary site navigation" msgstr "చందాలు" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "సహాయం" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "గురించి" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "ప్రశ్నలు" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "సేవా నియమాలు" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "అంతరంగికత" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "మూలము" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "సంప్రదించు" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "బాడ్జి" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** అనేది [%%site.broughtby%%](%%site.broughtbyurl%%) వారు " "అందిస్తున్న మైక్రో బ్లాగింగు సదుపాయం. " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4753,40 +4800,51 @@ msgstr "" "html) కింద లభ్యమయ్యే [స్టేటస్‌నెట్](http://status.net/) మైక్రోబ్లాగింగ్ ఉపకరణం సంచిక %s " "పై నడుస్తుంది." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "కొత్త సందేశం" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "పేజీకరణ" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "తర్వాత" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "ఇంతక్రితం" @@ -5476,7 +5534,8 @@ msgstr "ఎక్కువ టపాలున్న గుంపులు" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5785,8 +5844,10 @@ 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:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "నుండి" @@ -5900,14 +5961,12 @@ msgid "Attach a file" msgstr "ఒక ఫైలుని జోడించు" #: lib/noticeform.php:212 -#, fuzzy msgid "Share my location" -msgstr "ట్యాగులని భద్రపరచలేకున్నాం." +msgstr "నేనున్న ప్రాంతాన్ని బహిరంగపరచు" #: lib/noticeform.php:215 -#, fuzzy msgid "Do not share my location" -msgstr "ట్యాగులని భద్రపరచలేకున్నాం." +msgstr "నేనున్న ప్రాంతాన్ని బహిరంగపరచకు" #: lib/noticeform.php:216 msgid "" @@ -5917,49 +5976,53 @@ msgstr "" "క్షమించండి, మీ భౌగోళిక ప్రాంతాన్ని తెలుసుకోవడం అనుకున్నదానికంటే ఎక్కవ సమయం తీసుకుంటూంది, దయచేసి " "కాసేపాగి ప్రయత్నించండి" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "ఉ" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "ద" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "తూ" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "ప" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "ఉ" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "ద" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "తూ" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "ప" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "సందర్భంలో" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "సృష్టితం" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "ఈ నోటీసుపై స్పందించండి" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "స్పందించండి" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "నోటీసుని తొలగించాం." @@ -6066,7 +6129,7 @@ msgstr "సభ్యులైన తేదీ" #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 msgid "Daily average" -msgstr "" +msgstr "రోజువారీ సగటు" #: lib/profileaction.php:264 msgid "All groups" @@ -6260,12 +6323,11 @@ msgstr "వాడుకరి చర్యలు" #: lib/userprofile.php:237 msgid "User deletion in progress..." -msgstr "" +msgstr "వాడుకరి తొలగింపు కొనసాగుతూంది..." #: lib/userprofile.php:263 -#, fuzzy msgid "Edit profile settings" -msgstr "ఫ్రొఫైలు అమరికలు" +msgstr "ఫ్రొఫైలు అమరికలని మార్చు" #: lib/userprofile.php:264 msgid "Edit" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index e498fae5bc..8459be7c11 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:32+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:40+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -109,7 +109,7 @@ msgstr "Böyle bir durum mesajı yok." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -123,7 +123,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,8 +184,10 @@ msgstr "" msgid "You and friends" msgstr "%s ve arkadaşları" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -200,13 +203,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -245,7 +248,7 @@ msgstr "Kullanıcı güncellenemedi." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Kullanıcının profili yok." @@ -258,7 +261,7 @@ msgstr "Profil kaydedilemedi." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -499,12 +502,14 @@ msgstr "Profil" msgid "%1$s groups %2$s is a member of." msgstr "Bize o profili yollamadınız" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "" @@ -564,7 +569,7 @@ 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/designadminpanel.php:104 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 @@ -588,7 +593,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 #, fuzzy msgid "Account" msgstr "Hakkında" @@ -601,8 +607,9 @@ msgstr "Hakkında" msgid "Nickname" msgstr "Takma ad" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Parola" @@ -742,8 +749,9 @@ msgstr "" msgid "Invalid size." msgstr "Geçersiz büyüklük." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Avatar" @@ -754,7 +762,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Kullanıcının profili yok." @@ -776,7 +784,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "" @@ -918,16 +926,18 @@ msgstr "Onay kodu bulunamadı." msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tanınmayan adres türü %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "O adres daha önce onaylanmış." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -935,17 +945,17 @@ msgstr "O adres daha önce onaylanmış." msgid "Couldn't update user." msgstr "Kullanıcı güncellenemedi." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Eposta onayı silinemedi." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Adresi Onayla" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" adresi hesabınız için onaylandı." @@ -978,7 +988,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:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -1038,7 +1048,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "Böyle bir durum mesajı yok." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1067,59 +1077,61 @@ msgstr "" msgid "Delete this user" msgstr "Böyle bir kullanıcı yok." -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "Geçersiz büyüklük." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "Parolayı değiştir" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "Yeni durum mesajı" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Değiştir" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Yeni durum mesajı" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1127,59 +1139,61 @@ msgid "" msgstr "" "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Parolayı değiştir" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "Bağlan" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "Ara" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Giriş" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1191,7 +1205,7 @@ msgstr "" msgid "Save" msgstr "Kaydet" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1797,13 +1811,15 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" @@ -1828,7 +1844,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Yeni hesap oluştur" @@ -3141,7 +3157,7 @@ msgstr "Geçersiz kullanıcı adı veya parola." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3157,8 +3173,9 @@ msgstr "" msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Eposta" @@ -3279,7 +3296,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "You already repeated that notice." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "Yarat" @@ -4257,7 +4274,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4419,27 +4437,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Bütün abonelikler" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Bize o profili yollamadınız" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4487,7 +4508,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Kişisel" @@ -4651,161 +4673,177 @@ msgstr "Abonelik oluşturulamadı." msgid "Could not save local group info." msgstr "Abonelik oluşturulamadı." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 #, fuzzy msgid "Upload an avatar" msgstr "Avatar güncellemede hata." -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "Kullanıcının profili yok." -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Kişisel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Parolayı değiştir" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Bağlan" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Abonelikler" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Geçersiz büyüklük." #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Çıkış" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Yeni hesap oluştur" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Kayıt" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Giriş" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Yardım" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Yardım" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4813,76 +4851,90 @@ msgstr "Ara" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Yardım" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Hakkında" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "SSS" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Gizlilik" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Kaynak" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "İletişim" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " "hazırlanan anında mesajlaşma ağıdır. " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4893,41 +4945,52 @@ 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:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "Yeni durum mesajı" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 #, fuzzy msgid "After" msgstr "« Sonra" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 #, fuzzy msgid "Before" msgstr "Önce »" @@ -5634,7 +5697,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" @@ -5930,7 +5994,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "" @@ -6061,51 +6125,55 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "İçerik yok!" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "Yarat" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 #, fuzzy msgid "Reply" msgstr "cevapla" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Durum mesajları" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index be9d5a1888..73d5a81f13 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-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:35+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:43+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -84,9 +84,8 @@ msgstr "Зберегти" #. 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 -#, fuzzy msgid "No such page." -msgstr "Немає такої сторінки" +msgstr "Немає такої сторінки." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -106,7 +105,7 @@ msgstr "Немає такої сторінки" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -120,7 +119,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,8 +185,10 @@ msgstr "" msgid "You and friends" msgstr "Ви з друзями" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Оновлення від %1$s та друзів на %2$s!" @@ -202,13 +204,13 @@ msgstr "Оновлення від %1$s та друзів на %2$s!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -231,12 +233,11 @@ msgid "This method requires a POST." msgstr "Цей метод потребує POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -"Ви мусите встановити параметр «девайс» з одним зі значень: СМС, ІМ, жоден" +"Ви мусите встановити параметр «device» з одним зі значень: sms, im, none." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -247,7 +248,7 @@ msgstr "Не вдалося оновити користувача." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Користувач не має профілю." @@ -259,7 +260,7 @@ msgstr "Не вдалося зберегти профіль." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -437,9 +438,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Забагато додаткових імен! Максимум становить %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Помилкове додаткове ім’я: \"%s\"" +msgstr "Помилкове додаткове ім’я: «%s»." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -455,9 +456,8 @@ msgstr "Додаткове ім’я не може бути таким сами #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "Групу не знайдено!" +msgstr "Групу не знайдено." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -493,12 +493,14 @@ msgstr "%s групи" msgid "%1$s groups %2$s is a member of." msgstr "%1$s групи, в яких %2$s бере участь." -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s групи" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "групи на %s" @@ -557,7 +559,7 @@ msgid "The request token %s has been denied and revoked." msgstr "Токен запиту %s було скасовано і відхилено." #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 -#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/designadminpanel.php:104 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 @@ -585,7 +587,8 @@ msgstr "" "на доступ до Вашого акаунту %4$s лише тим стороннім додаткам, яким Ви " "довіряєте." -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "Акаунт" @@ -597,8 +600,9 @@ msgstr "Акаунт" msgid "Nickname" msgstr "Ім’я користувача" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Пароль" @@ -733,8 +737,9 @@ msgstr "Немає розміру." msgid "Invalid size." msgstr "Недійсний розмір." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Аватара" @@ -745,7 +750,7 @@ msgstr "Ви можете завантажити аватару. Максима #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Користувач без відповідного профілю." @@ -765,7 +770,7 @@ msgid "Preview" msgstr "Перегляд" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "Видалити" @@ -885,9 +890,9 @@ msgstr "Розблокувати цього користувача" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Написати " +msgstr "Опублікувати в %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -901,16 +906,18 @@ msgstr "Код підтвердження не знайдено." msgid "That confirmation code is not for you!" msgstr "Цей код підтвердження не для Вас!" -#: actions/confirmaddress.php:90 -#, fuzzy, php-format +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format msgid "Unrecognized address type %s." -msgstr "Невизначений тип адреси %s" +msgstr "Невизначений тип адреси %s." -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Цю адресу вже було підтверджено." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -918,16 +925,16 @@ msgstr "Цю адресу вже було підтверджено." msgid "Couldn't update user." msgstr "Не вдалося оновити користувача." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не вдалося видалити підтвердження поштової адреси." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 msgid "Confirm address" msgstr "Підтвердити адресу" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресу \"%s\" було підтверджено для Вашого акаунту." @@ -956,7 +963,7 @@ msgstr "Ви не є власником цього додатку." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1015,7 +1022,7 @@ msgstr "Ви впевненні, що бажаєте видалити цей д msgid "Do not delete this notice" msgstr "Не видаляти цей допис" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Видалити допис" @@ -1043,54 +1050,56 @@ msgstr "" msgid "Delete this user" msgstr "Видалити цього користувача" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "Дизайн" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "Налаштування дизайну для цього сайту StatusNet." -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 msgid "Invalid logo URL." msgstr "Помилкова URL-адреса логотипу." -#: actions/designadminpanel.php:279 -#, fuzzy, php-format +#: actions/designadminpanel.php:280 +#, php-format msgid "Theme not available: %s." -msgstr "Тема не доступна: %s" +msgstr "Тема недоступна: %s." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 msgid "Change logo" msgstr "Змінити логотип" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 msgid "Site logo" msgstr "Логотип сайту" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 msgid "Change theme" msgstr "Змінити тему" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 msgid "Site theme" msgstr "Тема сайту" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "Тема для цього сайту." -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "Змінити фонове зображення" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "Фон" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1099,55 +1108,57 @@ msgstr "" "Ви можете завантажити фонове зображення для сайту. Максимальний розмір файлу " "%1$s." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "Увімк." -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "Вимк." -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Увімкнути або вимкнути фонове зображення." -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "Замостити фон" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 msgid "Change colours" msgstr "Змінити кольори" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 msgid "Content" msgstr "Зміст" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "Бічна панель" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Текст" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 msgid "Links" msgstr "Посилання" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "За замовч." -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Оновити налаштування за замовчуванням" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Повернутись до початкових налаштувань" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1159,7 +1170,7 @@ msgstr "Повернутись до початкових налаштувань" msgid "Save" msgstr "Зберегти" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "Зберегти дизайн" @@ -1575,9 +1586,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Невідома версія протоколу OMB." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Помилка при оновленні віддаленого профілю" +msgstr "Помилка при оновленні віддаленого профілю." #: actions/getfile.php:79 msgid "No such file." @@ -1746,13 +1756,15 @@ msgstr "Зробити адміном" msgid "Make this user an admin" msgstr "Надати цьому користувачеві права адміністратора" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s стрічка" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Оновлення членів %1$s на %2$s!" @@ -1782,7 +1794,7 @@ msgstr "" "повідомлення. Не бачите групу, яка Вас цікавить? Спробуйте її [знайти](%%%%" "action.groupsearch%%%%) або [створіть власну!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Створити нову групу" @@ -1951,9 +1963,9 @@ msgid "Invites have been disabled." msgstr "Запрошення були скасовані." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "Ви маєте спочатку увійти, аби мати змогу запросити когось до %s" +msgstr "Ви маєте спочатку увійти, аби мати змогу запросити когось до %s." #: actions/invite.php:72 #, php-format @@ -2187,9 +2199,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Не можна надати %1$s права адміна в групі %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Ніякого поточного статусу" +msgstr "Жодного поточного статусу." #: actions/newapplication.php:52 msgid "New Application" @@ -2355,9 +2366,9 @@ msgid "You are not a user of that application." msgstr "Ви не є користувачем даного додатку." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "Не вдалося скасувати доступ для додатку: " +msgstr "Не вдалося скасувати доступ для додатку: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2368,9 +2379,8 @@ msgid "Developers can edit the registration settings for their applications " msgstr "Розробники можуть змінити налаштування реєстрації для їхніх додатків " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Допис не має профілю" +msgstr "Допис не має профілю." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2379,15 +2389,15 @@ msgstr "%1$s має статус на %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "тип змісту " +msgstr "Тип змісту %s не підтримується." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "URL-адреса %s лише в простому HTTP, будь ласка." #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 #: lib/apiaction.php:1096 lib/apiaction.php:1212 @@ -2541,24 +2551,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Шлях та налаштування серверу для цього сайту StatusNet." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Дирикторію теми неможна прочитати: %s" +msgstr "Директорію теми не можна прочитати: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Щось не так із написанням директорії аватари: %s" +msgstr "Директорія аватарів не доступна для запису: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Щось не так із написанням директорії фону: %s" +msgstr "Директорія фонових зображень не доступна для запису:% s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Не можу прочитати директорію локалі: %s" +msgstr "Не можна прочитати директорію локалі: %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2699,9 +2709,9 @@ msgid "People search" msgstr "Пошук людей" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "Це недійсний особистий теґ: %s" +msgstr "Це недійсний особистий теґ: %s." #: actions/peopletag.php:142 #, php-format @@ -2709,9 +2719,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Користувачі з особистим теґом %1$s — сторінка %2$d" #: actions/postnotice.php:95 -#, fuzzy msgid "Invalid notice content." -msgstr "Недійсний зміст допису" +msgstr "Недійсний зміст допису." #: actions/postnotice.php:101 #, php-format @@ -2855,9 +2864,9 @@ msgid "Settings saved." msgstr "Налаштування збережено." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Досягнуто ліміту сторінки (%s)" +msgstr "Перевищено ліміт сторінки (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3119,8 +3128,9 @@ msgid "Invalid username or password." msgstr "Недійсне ім’я або пароль." #: actions/register.php:343 +#, fuzzy msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Ця форма дозволить створити новий акаунт. Ви зможете робити дописи і будете " @@ -3140,8 +3150,9 @@ msgstr "6 або більше знаків. Неодмінно." msgid "Same as password above. Required." msgstr "Такий само, як і пароль вище. Неодмінно." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Пошта" @@ -3154,13 +3165,13 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Повне ім’я, звісно ж Ваше справжнє ім’я :)" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " -"номер." +"Мої тексти і файли доступні під %s, окрім цих приватних даних: пароль, " +"електронна адреса, адреса IM, телефонний номер." #: actions/register.php:542 #, php-format @@ -3276,7 +3287,7 @@ msgstr "Ви не можете повторювати свої власні до msgid "You already repeated that notice." msgstr "Ви вже повторили цей допис." -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" msgstr "Повторено" @@ -3771,11 +3782,10 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Ліміт текстових повідомлень становить 0 (необмежено)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." msgstr "" -"Часове обмеження при надсиланні дублікату повідомлення має становити від 1 і " -"більше секунд." +"Обмеження часу при повторному надісланні того самого повідомлення має " +"становити одну і більше секунд." #: actions/siteadminpanel.php:221 msgid "General" @@ -3866,9 +3876,8 @@ msgid "Unable to save site notice." msgstr "Не вдається зберегти повідомлення сайту." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." -msgstr "Максимальна довжина повідомлення сайту становить 255 символів" +msgstr "Максимальна довжина повідомлення сайту становить 255 символів." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -4238,7 +4247,6 @@ msgid "User is not silenced." msgstr "Користувач поки що має право голосу." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." msgstr "У запиті відсутній ID профілю." @@ -4275,7 +4283,8 @@ msgstr "Помилковий текст привітання. Максималь msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Помилкова підписка за замовчуванням: '%1$s' не є користувачем." -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профіль" @@ -4439,28 +4448,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "Поласуйте бутербродом!" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" msgstr "Групи %1$s, сторінка %2$d" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "Шукати групи ще" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "%s не є учасником жодної групи." -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Спробуйте [знайти якісь групи](%%action.groupsearch%%) і приєднайтеся до них." -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" @@ -4520,7 +4532,8 @@ msgstr "" msgid "Plugins" msgstr "Додатки" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 msgid "Version" msgstr "Версія" @@ -4674,221 +4687,251 @@ msgstr "Не вдалося встановити членство." msgid "Could not save local group info." msgstr "Не вдалося зберегти інформацію про локальну групу." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Змінити налаштування профілю" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "Завантаження аватари" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Змінити Ваш пароль" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Змінити електронну адресу" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 msgid "Design your profile" msgstr "Дизайн Вашого профілю" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "Інше" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "Інші опції" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Інше" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "Сторінка без заголовку" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "Відправна навігація по сайту" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Персональний профіль і стрічка друзів" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 msgctxt "MENU" msgid "Personal" msgstr "Особисте" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адресу, аватару, пароль, профіль" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "З’єднання з сервісами" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "З’єднання" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Змінити конфігурацію сайту" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "Адмін" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Запросіть друзів та колег приєднатись до Вас на %s" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 msgctxt "MENU" msgid "Invite" msgstr "Запросити" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Вийти з сайту" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 msgctxt "MENU" msgid "Logout" msgstr "Вийти" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Створити новий акаунт" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 msgctxt "MENU" msgid "Register" msgstr "Реєстрація" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:478 +#: lib/action.php:481 msgctxt "MENU" msgid "Login" msgstr "Увійти" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:484 +#: lib/action.php:487 msgctxt "MENU" msgid "Help" msgstr "Довідка" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Об’яви на сайті" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "Огляд" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 msgid "Page notice" msgstr "Зауваження сторінки" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Допомога" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Про" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "ЧаП" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "Умови" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Приватність" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Джерело" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Контакт" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "Бедж" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "Ліцензія програмного забезпечення StatusNet" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** — це сервіс мікроблоґів наданий вам [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** — це сервіс мікроблоґів. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4899,40 +4942,51 @@ msgstr "" "для мікроблоґів, версія %s, доступному під [GNU Affero General Public " "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 msgid "Site content license" msgstr "Ліцензія змісту сайту" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Зміст і дані %1$s є приватними і конфіденційними." -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено." -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторські права на зміст і дані належать розробникам. Всі права захищено." #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "" +msgstr "Весь зміст і дані %1$s доступні на умовах ліцензії %2$s." -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "Нумерація сторінок" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "Вперед" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 msgid "Before" msgstr "Назад" @@ -5651,7 +5705,8 @@ msgstr "Групи з найбільшою кількістю дописів" msgid "Tags in %s group's notices" msgstr "Теґи у дописах групи %s" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Ця сторінка не доступна для того типу медіа, з яким ви погодились" @@ -5832,9 +5887,11 @@ msgstr "Підтвердження СМС" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "Очікування підтвердження телефонного номера." +msgstr "" +"%s, підтвердьте, що Ви є власником зазначеного номеру телефону, " +"скориставшись даним кодом:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 @@ -5962,6 +6019,9 @@ msgid "" "\n" "\t%s" msgstr "" +"Всю розмову можна переглянути тут:\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format @@ -5995,6 +6055,28 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%1$s (@%9$s) щойно надіслав(ла) Вам повідомлення («@-відповідь») на %2$s.\n" +"\n" +"Повідомлення знаходиться тут:\n" +"\n" +"%3$s\n" +"\n" +"Ось його зміст:\n" +"\n" +"%4$s\n" +"\n" +"%5$sНадіслати відповідь можна звідси:\n" +"\n" +"%6$s\n" +"\n" +"Список всіх @-відповідей, надісланих Вам, знаходиться тут:\n" +"\n" +"%7$s\n" +"\n" +"З повагою,\n" +"%2$s\n" +"\n" +"P.S. Ви можете вимкнути сповіщення електронною поштою тут: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6010,7 +6092,7 @@ msgstr "" "повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите " "лише Ви." -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "від" @@ -6140,48 +6222,52 @@ msgstr "" "На жаль, отримання інформації щодо Вашого місцезнаходження займе більше " "часу, ніж очікувалось; будь ласка, спробуйте пізніше" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "Півн." + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "Півд." + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "Сх." + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "Зах." + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -#: lib/noticelist.php:431 -msgid "N" -msgstr "Півн." - -#: lib/noticelist.php:431 -msgid "S" -msgstr "Півд." - -#: lib/noticelist.php:432 -msgid "E" -msgstr "Сх." - -#: lib/noticelist.php:432 -msgid "W" -msgstr "Зах." - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "в" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 msgid "in context" msgstr "в контексті" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "Відповісти на цей допис" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Відповісти" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 msgid "Notice repeated" msgstr "Допис повторили" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 20e0582197..6be6aba161 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:38+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:46+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -108,7 +108,7 @@ msgstr "Không có tin nhắn nào." #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -122,7 +122,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -182,8 +183,10 @@ msgstr "" msgid "You and friends" msgstr "%s và bạn bè" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -199,13 +202,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -244,7 +247,7 @@ msgstr "Không thể cập nhật thành viên." #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Người dùng không có thông tin." @@ -257,7 +260,7 @@ msgstr "Không thể lưu hồ sơ cá nhân." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -501,12 +504,14 @@ msgstr "%s và nhóm" msgid "%1$s groups %2$s is a member of." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, fuzzy, php-format msgid "%s groups" msgstr "%s và nhóm" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, fuzzy, php-format msgid "groups on %s" msgstr "Mã nhóm" @@ -566,7 +571,7 @@ 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/designadminpanel.php:104 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 @@ -590,7 +595,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 #, fuzzy msgid "Account" msgstr "Giới thiệu" @@ -603,8 +609,9 @@ msgstr "Giới thiệu" msgid "Nickname" msgstr "Biệt danh" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "Mật khẩu" @@ -743,8 +750,9 @@ msgstr "Không có kích thước." msgid "Invalid size." msgstr "Kích thước không hợp lệ." +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "Hình đại diện" @@ -757,7 +765,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" @@ -778,7 +786,7 @@ msgid "Preview" msgstr "Xem trước" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 #, fuzzy msgid "Delete" msgstr "Xóa tin nhắn" @@ -921,16 +929,18 @@ msgstr "Không tìm thấy mã xác nhận." msgid "That confirmation code is not for you!" msgstr "Mã xác nhận này không phải của bạn!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Không nhận dạng kiểu địa chỉ %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Địa chỉ đó đã được xác nhận rồi." -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -938,17 +948,17 @@ msgstr "Địa chỉ đó đã được xác nhận rồi." msgid "Couldn't update user." msgstr "Không thể cập nhật thành viên." -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Không thể xóa email xác nhận." -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "Xác nhận địa chỉ" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Địa chỉ \"%s\" đã được xác nhận từ tài khoản của bạn." @@ -981,7 +991,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:1221 +#: lib/action.php:1253 #, 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." @@ -1043,7 +1053,7 @@ msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" msgid "Do not delete this notice" msgstr "Không thể xóa tin nhắn này." -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 #, fuzzy msgid "Delete this notice" msgstr "Xóa tin nhắn" @@ -1074,61 +1084,63 @@ msgstr "" msgid "Delete this user" msgstr "Xóa tin nhắn" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "Kích thước không hợp lệ." -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "Thay đổi mật khẩu của bạn" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "Thư mời" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "Thay đổi" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "Thông báo mới" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 #, fuzzy msgid "Change background image" msgstr "Background Theme:" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 #, fuzzy msgid "Background" msgstr "Background Theme:" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1137,60 +1149,62 @@ msgstr "" "Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " "về bạn." -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 #, fuzzy msgid "Tile background image" msgstr "Background Theme:" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Thay đổi mật khẩu của bạn" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "Kết nối" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "Tìm kiếm" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "Chuỗi bất kỳ" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Đăng nhập" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1202,7 +1216,7 @@ msgstr "" msgid "Save" msgstr "Lưu" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 #, fuzzy msgid "Save design" msgstr "Lưu" @@ -1841,13 +1855,15 @@ msgstr "" msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: 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 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" @@ -1873,7 +1889,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Tạo nhóm" @@ -3241,7 +3257,7 @@ msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ." #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3259,8 +3275,9 @@ msgstr "Nhiều hơn 6 ký tự. Bắt buộc" msgid "Same as password above. Required." msgstr "Cùng mật khẩu ở trên. Bắt buộc." +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "Email" @@ -3397,7 +3414,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho msgid "You already repeated that notice." msgstr "Bạn đã theo những người này:" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "Tạo" @@ -4397,7 +4414,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Hồ sơ " @@ -4568,27 +4586,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "Thành viên" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, 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:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4636,7 +4657,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "Cá nhân" @@ -4803,94 +4825,107 @@ msgstr "Không thể tạo đăng nhận." msgid "Could not save local group info." msgstr "Không thể tạo đăng nhận." -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Thay đổi các thiết lập trong hồ sơ cá nhân của bạn" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 #, fuzzy msgid "Upload an avatar" msgstr "Cập nhật hình đại diện không thành công." -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "Thay đổi mật khẩu của bạn" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "Đang thực hiện việc thay đổi email" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "Hồ sơ" -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 +msgid "Other options" +msgstr "" + +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 #, fuzzy msgid "Other" msgstr "Sau" -#: lib/accountsettingsaction.php:128 -msgid "Other options" -msgstr "" - -#: lib/action.php:144 +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%s (%s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Cá nhân" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Thay đổi mật khẩu của bạn" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Không thể chuyển đến máy chủ: %s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "Kết nối" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Tôi theo" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -4898,69 +4933,72 @@ 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:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Thư mời" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Thoát" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Tạo tài khoản mới" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Đăng ký" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Đăng nhập" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hướng dẫn" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hướng dẫn" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4968,77 +5006,91 @@ msgstr "Tìm kiếm" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Thông báo mới" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 #, fuzzy msgid "Page notice" msgstr "Thông báo mới" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 #, fuzzy msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "Hướng dẫn" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "Giới thiệu" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "Riêng tư" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "Nguồn" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "Liên hệ" -#: lib/action.php:770 +#: lib/action.php:784 #, fuzzy msgid "Badge" msgstr "Tin đã gửi" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, fuzzy, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5049,41 +5101,52 @@ msgstr "" "quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "Tìm theo nội dung của tin nhắn" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 #, fuzzy msgid "After" msgstr "Sau" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 #, fuzzy msgid "Before" msgstr "Trước" @@ -5803,7 +5866,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." @@ -6151,7 +6215,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 #, fuzzy msgid "from" msgstr " từ " @@ -6285,52 +6349,56 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "Không" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "Không có nội dung!" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "Tạo" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply to this notice" msgstr "Trả lời tin nhắn này" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "Trả lời" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "Tin đã gửi" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index c0633fc1ab..0555f1c20a 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:41+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:49+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 (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -111,7 +111,7 @@ msgstr "没有该页面" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -125,7 +125,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,8 +186,10 @@ msgstr "" msgid "You and friends" msgstr "%s 及好友" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "来自%2$s 上 %1$s 和好友的更新!" @@ -202,13 +205,13 @@ msgstr "来自%2$s 上 %1$s 和好友的更新!" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -247,7 +250,7 @@ msgstr "无法更新用户。" #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "用户没有个人信息。" @@ -260,7 +263,7 @@ msgstr "无法保存个人信息。" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -500,12 +503,14 @@ msgstr "%s 群组" msgid "%1$s groups %2$s is a member of." msgstr "%s 组是成员组成了" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "%s 群组" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, fuzzy, php-format msgid "groups on %s" msgstr "组动作" @@ -565,7 +570,7 @@ 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/designadminpanel.php:104 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 @@ -589,7 +594,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 msgid "Account" msgstr "帐号" @@ -601,8 +607,9 @@ msgstr "帐号" msgid "Nickname" msgstr "昵称" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "密码" @@ -742,8 +749,9 @@ msgstr "没有大小。" msgid "Invalid size." msgstr "大小不正确。" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "头像" @@ -754,7 +762,7 @@ msgstr "您可以在这里上传个人头像。" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "找不到匹配的用户。" @@ -775,7 +783,7 @@ msgid "Preview" msgstr "预览" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 #, fuzzy msgid "Delete" msgstr "删除" @@ -918,16 +926,18 @@ msgstr "未找到确认码。" msgid "That confirmation code is not for you!" msgstr "此确认码不适用!" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "不可识别的地址类型 %s" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "此地址已被确认。" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -935,17 +945,17 @@ msgstr "此地址已被确认。" msgid "Couldn't update user." msgstr "无法更新用户。" -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "无法删除电子邮件确认。" -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "确认地址" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "地址 \"%s\" 已确认。" @@ -978,7 +988,7 @@ msgstr "您未告知此个人信息" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 #, fuzzy msgid "There was a problem with your session token." msgstr "会话标识有问题,请重试。" @@ -1040,7 +1050,7 @@ msgstr "确定要删除这条消息吗?" msgid "Do not delete this notice" msgstr "无法删除通告。" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 #, fuzzy msgid "Delete this notice" msgstr "删除通告" @@ -1071,119 +1081,123 @@ msgstr "" msgid "Delete this user" msgstr "删除通告" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "大小不正确。" -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "这个页面不提供您想要的媒体类型" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "修改密码" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "邀请" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "修改" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "新通告" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 #, fuzzy msgid "Theme for the site." msgstr "登出本站" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." msgstr "你可以给你的组上载一个logo图。" -#: actions/designadminpanel.php:457 lib/designsettings.php:139 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "修改密码" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "连接" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 #, fuzzy msgid "Sidebar" msgstr "搜索" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "文本" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "登录" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1195,7 +1209,7 @@ msgstr "" msgid "Save" msgstr "保存" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1819,13 +1833,15 @@ msgstr "admin管理员" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "%s 时间表" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -1850,7 +1866,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "创建新组" @@ -3179,7 +3195,7 @@ msgstr "用户名或密码不正确。" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3195,8 +3211,9 @@ msgstr "6 个或更多字符。此项必填。" msgid "Same as password above. Required." msgstr "相同的密码。此项必填。" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "电子邮件" @@ -3332,7 +3349,7 @@ msgstr "您必须同意此授权方可注册。" msgid "You already repeated that notice." msgstr "您已成功阻止该用户:" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "创建" @@ -4329,7 +4346,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "个人信息" @@ -4496,28 +4514,31 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "%s 组成员, 第 %d 页" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 #, fuzzy msgid "Search for more groups" msgstr "检索人或文字" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "您未告知此个人信息" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -4565,7 +4586,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "个人" @@ -4731,165 +4753,181 @@ msgstr "无法删除订阅。" msgid "Could not save local group info." msgstr "无法删除订阅。" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "修改您的个人信息" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 msgid "Upload an avatar" msgstr "上载一个头像。" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "修改密码" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "修改电子邮件" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "用户没有个人信息。" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "其他" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "其他选项" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "其他" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s (%2$s)" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "无标题页" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "主站导航" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "个人资料及朋友年表" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "个人" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "修改资料" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "无法重定向到服务器:%s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "连接" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "主站导航" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "admin管理员" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "使用这个表单来邀请好友和同事加入。" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "邀请" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "登出本站" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "登出" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "创建新帐号" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "注册" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "登入本站" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "登录" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "帮助" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "帮助" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "检索人或文字" -#: lib/action.php:490 +#: lib/action.php:493 #, fuzzy msgctxt "MENU" msgid "Search" @@ -4897,77 +4935,91 @@ msgstr "搜索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "新通告" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "本地显示" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 #, fuzzy msgid "Page notice" msgstr "新通告" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 #, fuzzy msgid "Secondary site navigation" msgstr "次项站导航" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "帮助" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "关于" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "常见问题FAQ" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "隐私" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "来源" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "联系人" -#: lib/action.php:770 +#: lib/action.php:784 #, fuzzy msgid "Badge" msgstr "呼叫" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "StatusNet软件注册证" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." "broughtbyurl%%)。" -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 是一个微博客服务。" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4978,41 +5030,52 @@ msgstr "" "General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" "授权。" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "StatusNet软件注册证" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "分页" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 #, fuzzy msgid "After" msgstr "« 之后" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 #, fuzzy msgid "Before" msgstr "之前 »" @@ -5724,7 +5787,8 @@ msgstr "消息最多的群" msgid "Tags in %s group's notices" msgstr "这个组所发布的消息的标签" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "这个页面不提供您想要的媒体类型" @@ -6027,7 +6091,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 #, fuzzy msgid "from" msgstr " 从 " @@ -6160,53 +6224,57 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 -#, php-format -msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" - -#: lib/noticelist.php:431 #, fuzzy msgid "N" msgstr "否" -#: lib/noticelist.php:431 +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 msgid "S" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 msgid "E" msgstr "" -#: lib/noticelist.php:432 +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 msgid "W" msgstr "" -#: lib/noticelist.php:439 +#: lib/noticelist.php:438 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "没有内容!" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "创建" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 #, fuzzy msgid "Reply to this notice" msgstr "无法删除通告。" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 #, fuzzy msgid "Reply" msgstr "回复" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "消息已发布。" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index d66ebabdd2..ecc43cf05c 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-09 22:59+0000\n" -"PO-Revision-Date: 2010-04-09 23:01:44+0000\n" +"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"PO-Revision-Date: 2010-04-10 19:14:53+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 (r64832); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64895); 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" @@ -105,7 +105,7 @@ msgstr "無此通知" #: 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:40 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 #: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." @@ -119,7 +119,8 @@ 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:181 actions/allrss.php:115 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:116 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -179,8 +180,10 @@ msgstr "" msgid "You and friends" msgstr "%s與好友" -#: actions/allrss.php:119 actions/apitimelinefriends.php:119 -#: actions/apitimelinehome.php:120 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:120 +#: actions/apitimelinehome.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -196,13 +199,13 @@ msgstr "" #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: actions/apigroupleave.php:141 actions/apigrouplist.php:136 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigrouplistall.php:121 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:141 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:174 -#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173 +#: actions/apitimelinefavorites.php:173 actions/apitimelinefriends.php:175 +#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:174 #: actions/apitimelinementions.php:173 actions/apitimelinepublic.php:151 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:160 @@ -241,7 +244,7 @@ msgstr "無法更新使用者" #: 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 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "" @@ -254,7 +257,7 @@ msgstr "無法儲存個人資料" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 -#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 #, php-format @@ -490,12 +493,14 @@ msgstr "無此通知" msgid "%1$s groups %2$s is a member of." msgstr "無法連結到伺服器:%s" -#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:91 actions/usergroups.php:63 #, php-format msgid "%s groups" msgstr "" -#: actions/apigrouplistall.php:94 +#: actions/apigrouplistall.php:95 #, php-format msgid "groups on %s" msgstr "" @@ -555,7 +560,7 @@ 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/designadminpanel.php:104 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 @@ -579,7 +584,8 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 lib/action.php:437 +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:440 #, fuzzy msgid "Account" msgstr "關於" @@ -592,8 +598,9 @@ msgstr "關於" msgid "Nickname" msgstr "暱稱" +#. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:233 -#: actions/register.php:429 lib/accountsettingsaction.php:116 +#: actions/register.php:429 lib/accountsettingsaction.php:125 msgid "Password" msgstr "" @@ -731,8 +738,9 @@ msgstr "無尺寸" msgid "Invalid size." msgstr "尺寸錯誤" +#. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:112 +#: lib/accountsettingsaction.php:118 msgid "Avatar" msgstr "個人圖像" @@ -743,7 +751,7 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:106 +#: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "" @@ -764,7 +772,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:648 +#: lib/deleteuserform.php:66 lib/noticelist.php:656 msgid "Delete" msgstr "" @@ -905,16 +913,18 @@ msgstr "確認碼遺失" msgid "That confirmation code is not for you!" msgstr "" -#: actions/confirmaddress.php:90 +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 #, php-format msgid "Unrecognized address type %s." msgstr "" -#: actions/confirmaddress.php:94 +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/confirmaddress.php:116 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 @@ -922,17 +932,17 @@ msgstr "" msgid "Couldn't update user." msgstr "無法更新使用者" -#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/confirmaddress.php:128 actions/emailsettings.php:391 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "無法取消信箱確認" -#: actions/confirmaddress.php:144 +#: actions/confirmaddress.php:146 #, fuzzy msgid "Confirm address" msgstr "確認信箱" -#: actions/confirmaddress.php:159 +#: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -965,7 +975,7 @@ msgstr "無法連結到伺服器:%s" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1221 +#: lib/action.php:1253 msgid "There was a problem with your session token." msgstr "" @@ -1025,7 +1035,7 @@ msgstr "" msgid "Do not delete this notice" msgstr "無此通知" -#: actions/deletenotice.php:146 lib/noticelist.php:648 +#: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1054,117 +1064,121 @@ msgstr "" msgid "Delete this user" msgstr "無此使用者" -#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 #: lib/groupnav.php:119 msgid "Design" msgstr "" -#: actions/designadminpanel.php:73 +#: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:275 +#: actions/designadminpanel.php:276 #, fuzzy msgid "Invalid logo URL." msgstr "尺寸錯誤" -#: actions/designadminpanel.php:279 +#: actions/designadminpanel.php:280 #, fuzzy, php-format msgid "Theme not available: %s." msgstr "個人首頁位址錯誤" -#: actions/designadminpanel.php:375 +#: actions/designadminpanel.php:376 #, fuzzy msgid "Change logo" msgstr "更改密碼" -#: actions/designadminpanel.php:380 +#: actions/designadminpanel.php:381 #, fuzzy msgid "Site logo" msgstr "新訊息" -#: actions/designadminpanel.php:387 +#: actions/designadminpanel.php:388 #, fuzzy msgid "Change theme" msgstr "更改" -#: actions/designadminpanel.php:404 +#: actions/designadminpanel.php:405 #, fuzzy msgid "Site theme" msgstr "新訊息" -#: actions/designadminpanel.php:405 +#: actions/designadminpanel.php:406 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:417 lib/designsettings.php:101 +#: actions/designadminpanel.php:418 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: actions/designadminpanel.php:423 actions/designadminpanel.php:500 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:427 +#: actions/designadminpanel.php:428 #, 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 +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" msgstr "" -#: actions/designadminpanel.php:473 lib/designsettings.php:155 +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:474 lib/designsettings.php:156 +#: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:479 lib/designsettings.php:161 +#: actions/designadminpanel.php:482 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:488 lib/designsettings.php:170 +#: actions/designadminpanel.php:491 lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "更改密碼" -#: actions/designadminpanel.php:510 lib/designsettings.php:191 +#: actions/designadminpanel.php:513 lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "連結" -#: actions/designadminpanel.php:523 lib/designsettings.php:204 +#: actions/designadminpanel.php:526 lib/designsettings.php:204 msgid "Sidebar" msgstr "" -#: actions/designadminpanel.php:536 lib/designsettings.php:217 +#: actions/designadminpanel.php:539 lib/designsettings.php:217 msgid "Text" msgstr "" -#: actions/designadminpanel.php:549 lib/designsettings.php:230 +#: actions/designadminpanel.php:552 lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "登入" -#: actions/designadminpanel.php:577 lib/designsettings.php:247 +#: actions/designadminpanel.php:580 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:578 lib/designsettings.php:248 +#: actions/designadminpanel.php:581 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:584 lib/designsettings.php:254 +#: actions/designadminpanel.php:587 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" -#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/designadminpanel.php:589 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 @@ -1176,7 +1190,7 @@ msgstr "" msgid "Save" msgstr "" -#: actions/designadminpanel.php:587 lib/designsettings.php:257 +#: actions/designadminpanel.php:590 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1776,13 +1790,15 @@ msgstr "" msgid "Make this user an admin" msgstr "" -#: actions/grouprss.php:138 actions/userrss.php:93 +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 #, php-format msgid "%s timeline" msgstr "" -#: actions/grouprss.php:140 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "&s的微型部落格" @@ -1807,7 +1823,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "新增帳號" @@ -3078,7 +3094,7 @@ msgstr "使用者名稱或密碼無效" #: actions/register.php:343 msgid "" -"With this form you can create a new account. You can then post notices and " +"With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" @@ -3094,8 +3110,9 @@ msgstr "" msgid "Same as password above. Required." msgstr "" +#. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" msgstr "電子信箱" @@ -3211,7 +3228,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "無此使用者" -#: actions/repeat.php:114 lib/noticelist.php:667 +#: actions/repeat.php:114 lib/noticelist.php:675 #, fuzzy msgid "Repeated" msgstr "新增" @@ -4180,7 +4197,8 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" @@ -4335,27 +4353,30 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#: actions/usergroups.php:64 +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 #, fuzzy, php-format msgid "%1$s groups, page %2$d" msgstr "所有訂閱" -#: actions/usergroups.php:130 +#: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:157 +#: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:162 +#: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:66 -#: lib/atomusernoticefeed.php:72 +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 +#: lib/atomusernoticefeed.php:73 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4403,7 +4424,8 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:766 +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:196 lib/action.php:779 #, fuzzy msgid "Version" msgstr "地點" @@ -4566,236 +4588,266 @@ msgstr "註冊失敗" msgid "Could not save local group info." msgstr "註冊失敗" -#: lib/accountsettingsaction.php:108 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" -#: lib/accountsettingsaction.php:112 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 #, fuzzy msgid "Upload an avatar" msgstr "無法上傳個人圖像" -#: lib/accountsettingsaction.php:116 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 msgid "Change your password" msgstr "" -#: lib/accountsettingsaction.php:120 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 #, fuzzy msgid "Design your profile" msgstr "無此通知" -#: lib/accountsettingsaction.php:128 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:128 +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 msgid "Other options" msgstr "" -#: lib/action.php:144 +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:145 #, fuzzy, php-format msgid "%1$s - %2$s" msgstr "%1$s的狀態是%2$s" -#: lib/action.php:159 +#. TRANS: Page title for a page without a title set. +#: lib/action.php:161 msgid "Untitled page" msgstr "" -#: lib/action.php:423 +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:426 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:429 +#: lib/action.php:432 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:432 +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:435 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "地點" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:434 +#: lib/action.php:437 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "更改密碼" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:439 +#: lib/action.php:442 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "無法連結到伺服器:%s" -#: lib/action.php:442 +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:445 msgid "Connect" msgstr "連結" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:445 +#: lib/action.php:448 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "確認信箱" -#: lib/action.php:448 +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#: lib/action.php:451 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:452 +#: lib/action.php:455 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:455 +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:458 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "尺寸錯誤" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:461 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:464 +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:467 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "登出" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:469 +#: lib/action.php:472 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "新增帳號" -#: lib/action.php:472 +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:475 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "所有訂閱" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:475 +#: lib/action.php:478 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:478 +#: lib/action.php:481 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "登入" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:481 +#: lib/action.php:484 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "求救" -#: lib/action.php:484 +#: lib/action.php:487 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "求救" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:487 +#: lib/action.php:490 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:490 +#: lib/action.php:493 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:512 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "新訊息" -#: lib/action.php:578 +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:582 msgid "Local views" msgstr "" -#: lib/action.php:644 +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:649 #, fuzzy msgid "Page notice" msgstr "新訊息" -#: lib/action.php:746 +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:752 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:751 +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:758 msgid "Help" msgstr "求救" -#: lib/action.php:753 +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:761 msgid "About" msgstr "關於" -#: lib/action.php:755 +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:764 msgid "FAQ" msgstr "常見問題" -#: lib/action.php:759 +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:769 msgid "TOS" msgstr "" -#: lib/action.php:762 +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:773 msgid "Privacy" msgstr "" -#: lib/action.php:764 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:776 msgid "Source" msgstr "" -#: lib/action.php:768 +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:782 msgid "Contact" msgstr "好友名單" -#: lib/action.php:770 +#: lib/action.php:784 msgid "Badge" msgstr "" -#: lib/action.php:798 +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:813 msgid "StatusNet software license" msgstr "" -#: lib/action.php:803 -#, php-format +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#: lib/action.php:817 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" "部落格服務" -#: lib/action.php:805 -#, php-format -msgid "**%%site.name%%** is a microblogging service. " +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:820 +#, fuzzy, php-format +msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%**是個微型部落格" -#: lib/action.php:808 +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#: lib/action.php:824 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4803,40 +4855,51 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:823 +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:840 #, fuzzy msgid "Site content license" msgstr "新訊息" -#: lib/action.php:828 +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:847 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:833 +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#: lib/action.php:854 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:836 +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +#: lib/action.php:858 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:849 +#: lib/action.php:871 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#: lib/action.php:1156 +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1182 msgid "Pagination" msgstr "" -#: lib/action.php:1165 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1193 msgid "After" msgstr "" -#: lib/action.php:1173 +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1203 #, fuzzy msgid "Before" msgstr "之前的內容»" @@ -5527,7 +5590,8 @@ msgstr "" msgid "Tags in %s group's notices" msgstr "" -#: lib/htmloutputter.php:103 +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" @@ -5822,7 +5886,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:227 lib/noticelist.php:486 +#: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" msgstr "" @@ -5952,50 +6016,54 @@ msgid "" "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:430 +msgid "N" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:432 +msgid "S" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:434 +msgid "E" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:436 +msgid "W" +msgstr "" + +#: lib/noticelist.php:438 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:431 -msgid "N" -msgstr "" - -#: lib/noticelist.php:431 -msgid "S" -msgstr "" - -#: lib/noticelist.php:432 -msgid "E" -msgstr "" - -#: lib/noticelist.php:432 -msgid "W" -msgstr "" - -#: lib/noticelist.php:439 +#: lib/noticelist.php:447 msgid "at" msgstr "" -#: lib/noticelist.php:559 +#: lib/noticelist.php:567 #, fuzzy msgid "in context" msgstr "無內容" -#: lib/noticelist.php:594 +#: lib/noticelist.php:602 #, fuzzy msgid "Repeated by" msgstr "新增" -#: lib/noticelist.php:621 +#: lib/noticelist.php:629 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:622 +#: lib/noticelist.php:630 msgid "Reply" msgstr "" -#: lib/noticelist.php:666 +#: lib/noticelist.php:674 #, fuzzy msgid "Notice repeated" msgstr "更新個人圖像" From 1661be68510e57cac9abded49d23a6c731f1840e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 21:59:17 +0200 Subject: [PATCH 54/80] i18n for low level logging is not needed. --- lib/apiauth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/apiauth.php b/lib/apiauth.php index e78de618ee..efadffc132 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -273,8 +273,8 @@ class ApiAuthAction extends ApiAction list($proxy, $ip) = common_client_ip(); - $msg = sprintf(_('Failed API auth attempt, nickname = %1$s, ' . - 'proxy = %2$s, ip = %3$s'), + $msg = sprintf( 'Failed API auth attempt, nickname = %1$s, ' . + 'proxy = %2$s, ip = %3$s', $this->auth_user_nickname, $proxy, $ip); From 204cf0b96b677e907b259430a1628c35af682ebb Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 22:49:33 +0200 Subject: [PATCH 55/80] Add translator documentation * approved message had not been i18n-ed * also had to i18n 'read-only' and 'read-write' --- lib/applicationlist.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/lib/applicationlist.php b/lib/applicationlist.php index 3abb1f8aa7..904f8981d1 100644 --- a/lib/applicationlist.php +++ b/lib/applicationlist.php @@ -88,7 +88,6 @@ class ApplicationList extends Widget function showApplication() { - $user = common_current_user(); $this->out->elementStart('li', array('class' => 'application', @@ -133,11 +132,16 @@ class ApplicationList extends Widget $this->out->elementStart('li'); - $access = ($this->application->access_type & Oauth_application::$writeAccess) - ? 'read-write' : 'read-only'; + // TRANS: Application access type + $readWriteText = _('read-write'); + // TRANS: Application access type + $readOnlyText = _('read-only'); - $txt = 'Approved ' . common_date_string($appUser->modified) . - " - $access access."; + $access = ($this->application->access_type & Oauth_application::$writeAccess) + ? $readWriteText : $readOnlyText; + $modifiedDate = common_date_string($appUser->modified); + // TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) + $txt = sprintf(_('Approved %1$s - "%2$s" access.'),$modifiedDate,$access); $this->out->raw($txt); $this->out->elementEnd('li'); @@ -151,7 +155,8 @@ class ApplicationList extends Widget $this->out->elementStart('fieldset'); $this->out->hidden('id', $this->application->id); $this->out->hidden('token', common_session_token()); - $this->out->submit('revoke', _('Revoke')); + // TRANS: Button label + $this->out->submit('revoke', _m('BUTTON','Revoke')); $this->out->elementEnd('fieldset'); $this->out->elementEnd('form'); $this->out->elementEnd('li'); From 9b788471d4d5141bf4991367f1f46f2a4e35da36 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 10 Apr 2010 22:50:15 +0200 Subject: [PATCH 56/80] Add translator documentation. --- lib/activity.php | 3 ++- lib/adminpanelaction.php | 11 +++++----- lib/apiaction.php | 3 +++ lib/apiauth.php | 1 + lib/applicationeditform.php | 41 +++++++++++++++++++++++++++++++------ lib/atomgroupnoticefeed.php | 4 +++- lib/atomusernoticefeed.php | 4 +++- lib/attachmentlist.php | 3 +++ 8 files changed, 56 insertions(+), 14 deletions(-) diff --git a/lib/activity.php b/lib/activity.php index 5d6230c6df..365bb6258e 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -117,7 +117,8 @@ class Activity // Insist on a feed's root DOMElement; don't allow a DOMDocument if ($feed instanceof DOMDocument) { throw new ClientException( - _("Expecting a root feed element but got a whole XML document.") + // TRANS: Client exception thrown when a feed instance is a DOMDocument. + _('Expecting a root feed element but got a whole XML document.') ); } diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index a927e23336..e22804fc82 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -69,7 +69,7 @@ class AdminPanelAction extends Action // User must be logged in. if (!common_logged_in()) { - // TRANS: Client error message + // TRANS: Client error message thrown when trying to access the admin panel while not logged in. $this->clientError(_('Not logged in.')); return false; } @@ -94,7 +94,7 @@ class AdminPanelAction extends Action // User must have the right to change admin settings if (!$user->hasRight(Right::CONFIGURESITE)) { - // TRANS: Client error message + // TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. $this->clientError(_('You cannot make changes to this site.')); return false; } @@ -106,7 +106,7 @@ class AdminPanelAction extends Action $name = mb_substr($name, 0, -10); if (!self::canAdmin($name)) { - // TRANS: Client error message + // TRANS: Client error message throw when a certain panel's settings cannot be changed. $this->clientError(_('Changes to that panel are not allowed.'), 403); return false; } @@ -225,7 +225,7 @@ class AdminPanelAction extends Action function showForm() { - // TRANS: Client error message + // TRANS: Client error message. $this->clientError(_('showForm() not implemented.')); return; } @@ -279,7 +279,8 @@ class AdminPanelAction extends Action $result = $config->delete(); if (!$result) { common_log_db_error($config, 'DELETE', __FILE__); - // TRANS: Client error message + // TRANS: Client error message thrown if design settings could not be deleted in + // TRANS: the admin panel Design. $this->clientError(_("Unable to delete design setting.")); return null; } diff --git a/lib/apiaction.php b/lib/apiaction.php index 59dc47c23b..5245c7ef60 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -1065,6 +1065,7 @@ class ApiAction extends Action $this->initTwitterAtom(); break; default: + // TRANS: Client error on an API request with an unsupported data format. $this->clientError(_('Not a supported data format.')); break; } @@ -1093,6 +1094,7 @@ class ApiAction extends Action $this->endTwitterRss(); break; default: + // TRANS: Client error on an API request with an unsupported data format. $this->clientError(_('Not a supported data format.')); break; } @@ -1209,6 +1211,7 @@ class ApiAction extends Action $this->showJsonObjects($profile_array); break; default: + // TRANS: Client error on an API request with an unsupported data format. $this->clientError(_('Not a supported data format.')); return; } diff --git a/lib/apiauth.php b/lib/apiauth.php index efadffc132..d6ad7e0211 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -91,6 +91,7 @@ class ApiAuthAction extends ApiAction if ($this->isReadOnly($args) == false) { if ($this->access != self::READ_WRITE) { + // TRANS: Client error 401. $msg = _('API resource requires read-write access, ' . 'but you only have read access.'); $this->clientError($msg, 401, $this->format); diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php index 9b7d058614..81c8fb0181 100644 --- a/lib/applicationeditform.php +++ b/lib/applicationeditform.php @@ -133,6 +133,7 @@ class ApplicationEditForm extends Form function formLegend() { + // TRANS: Form legend. $this->out->element('legend', null, _('Edit application')); } @@ -177,10 +178,12 @@ class ApplicationEditForm extends Form } $this->out->element('label', array('for' => 'app_icon'), + // TRANS: Form input field label for application icon. _('Icon')); $this->out->element('input', array('name' => 'app_icon', 'type' => 'file', 'id' => 'app_icon')); + // TRANS: Form guide. $this->out->element('p', 'form_guide', _('Icon for this application')); $this->out->element('input', array('name' => 'MAX_FILE_SIZE', 'type' => 'hidden', @@ -192,6 +195,7 @@ class ApplicationEditForm extends Form $this->out->hidden('application_id', $id); + // TRANS: Form input field label for application name. $this->out->input('name', _('Name'), ($this->out->arg('name')) ? $this->out->arg('name') : $name); @@ -201,11 +205,14 @@ class ApplicationEditForm extends Form $maxDesc = Oauth_application::maxDesc(); if ($maxDesc > 0) { + // TRANS: Form input field instructions. $descInstr = sprintf(_('Describe your application in %d characters'), $maxDesc); } else { + // TRANS: Form input field instructions. $descInstr = _('Describe your application'); } + // TRANS: Form input field label. $this->out->textarea('description', _('Description'), ($this->out->arg('description')) ? $this->out->arg('description') : $description, $descInstr); @@ -213,27 +220,39 @@ class ApplicationEditForm extends Form $this->out->elementEnd('li'); $this->out->elementStart('li'); + // TRANS: Form input field instructions. + $instruction = _('URL of the homepage of this application'); + // TRANS: Form input field label. $this->out->input('source_url', _('Source URL'), ($this->out->arg('source_url')) ? $this->out->arg('source_url') : $source_url, - _('URL of the homepage of this application')); + $instruction); $this->out->elementEnd('li'); $this->out->elementStart('li'); + // TRANS: Form input field instructions. + $instruction = _('Organization responsible for this application'); + // TRANS: Form input field label. $this->out->input('organization', _('Organization'), ($this->out->arg('organization')) ? $this->out->arg('organization') : $organization, - _('Organization responsible for this application')); + $instruction); $this->out->elementEnd('li'); $this->out->elementStart('li'); + // TRANS: Form input field instructions. + $instruction = _('URL for the homepage of the organization'); + // TRANS: Form input field label. $this->out->input('homepage', _('Homepage'), ($this->out->arg('homepage')) ? $this->out->arg('homepage') : $homepage, - _('URL for the homepage of the organization')); + $instruction); $this->out->elementEnd('li'); $this->out->elementStart('li'); + // TRANS: Form input field instructions. + $instruction = _('URL to redirect to after authentication'); + // TRANS: Form input field label. $this->out->input('callback_url', ('Callback URL'), ($this->out->arg('callback_url')) ? $this->out->arg('callback_url') : $callback_url, - _('URL to redirect to after authentication')); + $instruction); $this->out->elementEnd('li'); $this->out->elementStart('li', array('id' => 'application_types')); @@ -255,6 +274,7 @@ class ApplicationEditForm extends Form $this->out->element('label', array('for' => 'app_type-browser', 'class' => 'radio'), + // TRANS: Radio button label for application type _('Browser')); $attrs = array('name' => 'app_type', @@ -271,7 +291,9 @@ class ApplicationEditForm extends Form $this->out->element('label', array('for' => 'app_type-desktop', 'class' => 'radio'), + // TRANS: Radio button label for application type _('Desktop')); + // TRANS: Form guide. $this->out->element('p', 'form_guide', _('Type of application, browser or desktop')); $this->out->elementEnd('li'); @@ -294,6 +316,7 @@ class ApplicationEditForm extends Form $this->out->element('label', array('for' => 'default_access_type-ro', 'class' => 'radio'), + // TRANS: Radio button label for access type. _('Read-only')); $attrs = array('name' => 'default_access_type', @@ -312,7 +335,9 @@ class ApplicationEditForm extends Form $this->out->element('label', array('for' => 'default_access_type-rw', 'class' => 'radio'), + // TRANS: Radio button label for access type. _('Read-write')); + // TRANS: Form guide. $this->out->element('p', 'form_guide', _('Default access for this application: read-only, or read-write')); $this->out->elementEnd('li'); @@ -328,9 +353,13 @@ class ApplicationEditForm extends Form function formActions() { - $this->out->submit('cancel', _('Cancel'), 'submit form_action-primary', + // TRANS: Button label + $this->out->submit('cancel', _m('BUTTON','Cancel'), 'submit form_action-primary', + // TRANS: Submit button title 'cancel', _('Cancel')); - $this->out->submit('save', _('Save'), 'submit form_action-secondary', + // TRANS: Button label + $this->out->submit('save', _m('BUTTON','Save'), 'submit form_action-secondary', + // TRANS: Submit button title 'save', _('Save')); } } diff --git a/lib/atomgroupnoticefeed.php b/lib/atomgroupnoticefeed.php index 08c28a48be..b4810d04a0 100644 --- a/lib/atomgroupnoticefeed.php +++ b/lib/atomgroupnoticefeed.php @@ -58,12 +58,14 @@ class AtomGroupNoticeFeed extends AtomNoticeFeed parent::__construct($indent); $this->group = $group; + // TRANS: Title in atom group notice feed. %s is a group name. $title = sprintf(_("%s timeline"), $group->nickname); $this->setTitle($title); $sitename = common_config('site', 'name'); $subtitle = sprintf( - // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. + // TRANS: Message is used as a subtitle in atom group notice feed. + // TRANS: %1$s is a group name, %2$s is a site name. _('Updates from %1$s on %2$s!'), $group->nickname, $sitename diff --git a/lib/atomusernoticefeed.php b/lib/atomusernoticefeed.php index a534cbee6b..acfcbd75fb 100644 --- a/lib/atomusernoticefeed.php +++ b/lib/atomusernoticefeed.php @@ -64,12 +64,14 @@ class AtomUserNoticeFeed extends AtomNoticeFeed $this->setActivitySubject($profile->asActivityNoun('subject')); } + // TRANS: Title in atom user notice feed. %s is a user name. $title = sprintf(_("%s timeline"), $user->nickname); $this->setTitle($title); $sitename = common_config('site', 'name'); $subtitle = sprintf( - // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. + // TRANS: Message is used as a subtitle in atom user notice feed. + // TRANS: %1$s is a user name, %2$s is a site name. _('Updates from %1$s on %2$s!'), $user->nickname, $sitename ); diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php index 43f836e150..59cab9532c 100644 --- a/lib/attachmentlist.php +++ b/lib/attachmentlist.php @@ -84,6 +84,7 @@ class AttachmentList extends Widget if (empty($att)) return 0; $this->out->elementStart('dl', array('id' =>'attachments', 'class' => 'entry-content')); + // TRANS: DT element label in attachment list. $this->out->element('dt', null, _('Attachments')); $this->out->elementStart('dd'); $this->out->elementStart('ol', array('class' => 'attachments')); @@ -260,6 +261,7 @@ class Attachment extends AttachmentListItem 'class' => 'entry-content')); if (!empty($this->oembed->author_name)) { $this->out->elementStart('dl', 'vcard author'); + // TRANS: DT element label in attachment list item. $this->out->element('dt', null, _('Author')); $this->out->elementStart('dd', 'fn'); if (empty($this->oembed->author_url)) { @@ -273,6 +275,7 @@ class Attachment extends AttachmentListItem } if (!empty($this->oembed->provider)) { $this->out->elementStart('dl', 'vcard'); + // TRANS: DT element label in attachment list item. $this->out->element('dt', null, _('Provider')); $this->out->elementStart('dd', 'fn'); if (empty($this->oembed->provider_url)) { From 19b86da4264a49bccee392f3cc108eb118a424dc Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 01:03:06 +0200 Subject: [PATCH 57/80] Lower case "Web" --- actions/snapshotadminpanel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/snapshotadminpanel.php b/actions/snapshotadminpanel.php index df6b168dc8..be0a793e51 100644 --- a/actions/snapshotadminpanel.php +++ b/actions/snapshotadminpanel.php @@ -197,7 +197,7 @@ class SnapshotAdminPanelForm extends AdminForm $this->out->elementStart('ul', 'form_data'); $this->li(); $snapshot = array( - 'web' => _('Randomly during Web hit'), + 'web' => _('Randomly during web hit'), 'cron' => _('In a scheduled job'), 'never' => _('Never') ); From af06c554a0d8c4eeab801a9550d951845d40350a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 01:08:51 +0200 Subject: [PATCH 58/80] * DB -> Database in message * some translator documentation added --- classes/Notice.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/classes/Notice.php b/classes/Notice.php index 998e9c92ba..dccc3685aa 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -172,7 +172,8 @@ class Notice extends Memcached_DataObject $id = $tag->insert(); if (!$id) { - throw new ServerException(sprintf(_('DB error inserting hashtag: %s'), + // TRANS: Server exception. %s are the error details. + throw new ServerException(sprintf(_('Database error inserting hashtag: %s'), $last_error->message)); return; } @@ -1507,6 +1508,8 @@ class Notice extends Memcached_DataObject { $author = Profile::staticGet('id', $this->profile_id); + // TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. + // TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. $content = sprintf(_('RT @%1$s %2$s'), $author->nickname, $this->content); From 71c828de89d4092579470c9f2ba821ae803cb557 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 10 Apr 2010 17:52:40 -0700 Subject: [PATCH 59/80] Allow blocking someone who's not currently subscribed to you (prevents seeing @-replies from them, or them subbing to you in future) --- classes/User.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/classes/User.php b/classes/User.php index 2c256301c2..1928a3c62f 100644 --- a/classes/User.php +++ b/classes/User.php @@ -548,7 +548,10 @@ class User extends Memcached_DataObject return false; } - Subscription::cancel($other, $this->getProfile()); + $self = $this->getProfile(); + if (Subscription::exists($other, $self)) { + Subscription::cancel($other, $self); + } $block->query('COMMIT'); From 7fada4ddcc1908829a4c45a02c7ecb3ef3ba60e8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 10 Apr 2010 19:38:58 -0700 Subject: [PATCH 60/80] Fix syntax errors that snuck in while documenting translations --- lib/noticelist.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/noticelist.php b/lib/noticelist.php index b785504876..5265326b27 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -427,16 +427,16 @@ class NoticeListItem extends Widget $latdms = $this->decimalDegreesToDMS(abs($lat)); $londms = $this->decimalDegreesToDMS(abs($lon)); // TRANS: Used in coordinates as abbreviation of north - $north = _('N') + $north = _('N'); // TRANS: Used in coordinates as abbreviation of south - $south = _('S') + $south = _('S'); // TRANS: Used in coordinates as abbreviation of east - $east = _('E') + $east = _('E'); // TRANS: Used in coordinates as abbreviation of west - $west = _('W') + $west = _('W'); $name = sprintf( _('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'), - $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south)), + $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south), $londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west)); } From 03a5e96a61737b8087f12dffd614359ec5a8befa Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 20:40:25 +0200 Subject: [PATCH 61/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/af/LC_MESSAGES/statusnet.po | 234 +++++++++++------- locale/ar/LC_MESSAGES/statusnet.po | 236 +++++++++++------- locale/arz/LC_MESSAGES/statusnet.po | 236 +++++++++++------- locale/bg/LC_MESSAGES/statusnet.po | 241 ++++++++++++------- locale/br/LC_MESSAGES/statusnet.po | 236 +++++++++++------- locale/ca/LC_MESSAGES/statusnet.po | 293 +++++++++++++---------- locale/cs/LC_MESSAGES/statusnet.po | 239 ++++++++++++------- locale/de/LC_MESSAGES/statusnet.po | 238 +++++++++++------- locale/el/LC_MESSAGES/statusnet.po | 237 +++++++++++------- locale/en_GB/LC_MESSAGES/statusnet.po | 236 +++++++++++------- locale/es/LC_MESSAGES/statusnet.po | 331 +++++++++++++++----------- locale/fa/LC_MESSAGES/statusnet.po | 231 +++++++++++------- locale/fi/LC_MESSAGES/statusnet.po | 239 ++++++++++++------- locale/fr/LC_MESSAGES/statusnet.po | 248 +++++++++++-------- locale/ga/LC_MESSAGES/statusnet.po | 237 +++++++++++------- locale/gl/LC_MESSAGES/statusnet.po | 242 ++++++++++++------- locale/he/LC_MESSAGES/statusnet.po | 239 ++++++++++++------- locale/hsb/LC_MESSAGES/statusnet.po | 236 +++++++++++------- locale/ia/LC_MESSAGES/statusnet.po | 243 ++++++++++++------- locale/is/LC_MESSAGES/statusnet.po | 237 +++++++++++------- locale/it/LC_MESSAGES/statusnet.po | 243 ++++++++++++------- locale/ja/LC_MESSAGES/statusnet.po | 240 ++++++++++++------- locale/ko/LC_MESSAGES/statusnet.po | 237 +++++++++++------- locale/mk/LC_MESSAGES/statusnet.po | 246 +++++++++++-------- locale/nb/LC_MESSAGES/statusnet.po | 242 ++++++++++++------- locale/nl/LC_MESSAGES/statusnet.po | 247 +++++++++++-------- locale/nn/LC_MESSAGES/statusnet.po | 239 ++++++++++++------- locale/pl/LC_MESSAGES/statusnet.po | 248 +++++++++++-------- locale/pt/LC_MESSAGES/statusnet.po | 240 ++++++++++++------- locale/pt_BR/LC_MESSAGES/statusnet.po | 243 ++++++++++++------- locale/ru/LC_MESSAGES/statusnet.po | 257 ++++++++++++-------- locale/statusnet.pot | 226 +++++++++++------- locale/sv/LC_MESSAGES/statusnet.po | 248 +++++++++++-------- locale/te/LC_MESSAGES/statusnet.po | 239 ++++++++++++------- locale/tr/LC_MESSAGES/statusnet.po | 239 ++++++++++++------- locale/uk/LC_MESSAGES/statusnet.po | 252 ++++++++++++-------- locale/vi/LC_MESSAGES/statusnet.po | 237 +++++++++++------- locale/zh_CN/LC_MESSAGES/statusnet.po | 237 +++++++++++------- locale/zh_TW/LC_MESSAGES/statusnet.po | 237 +++++++++++------- 39 files changed, 5879 insertions(+), 3627 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 1fd2438648..948ac9bf8e 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:12:54+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:34:46+0000\n" "Language-Team: Afrikaans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: out-statusnet\n" @@ -21,7 +21,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Toegang" @@ -71,7 +71,8 @@ msgstr "Gesluit" msgid "Save access settings" msgstr "Stoor toegangsinstellings" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Stoor" @@ -822,7 +823,7 @@ msgstr "Moenie hierdie gebruiker blokkeer nie" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkeer hierdie gebruiker" @@ -968,7 +969,7 @@ msgstr "Moenie die applikasie verwyder nie" msgid "Delete this application" msgstr "Skrap hierdie applikasie" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1133,6 +1134,7 @@ msgstr "" msgid "Reset back to default" msgstr "Stel terug na standaard" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1140,8 +1142,8 @@ msgstr "Stel terug na standaard" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Stoor" @@ -1297,9 +1299,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Kanselleer" @@ -1609,7 +1611,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Blok gebruiker toegang tot die groep" @@ -1700,25 +1702,27 @@ msgstr "" msgid "Admin" msgstr "Administrateur" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blokkeer" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Maak Admin" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Maak hierdie gebruiker 'n administrateur" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tydlyn" @@ -2287,8 +2291,9 @@ msgstr "" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2428,7 +2433,7 @@ msgid "Password saved." msgstr "Wagwoord gestoor." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Paaie" @@ -2634,8 +2639,9 @@ msgstr "" msgid "Full name" msgstr "Volledige naam" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Tuisblad" @@ -3202,7 +3208,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessies" @@ -3239,21 +3245,25 @@ msgstr "" msgid "Application profile" msgstr "" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Ikoon" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Naam" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organisasie" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrywing" @@ -3775,7 +3785,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3796,7 +3806,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4227,9 +4237,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Opdaterings van %1$s op %2$s." @@ -4336,43 +4349,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 #, php-format -msgid "DB error inserting hashtag: %s" +msgid "Database error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4590,7 +4606,7 @@ msgstr "Soek" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "" @@ -4723,7 +4739,8 @@ msgstr "Na" msgid "Before" msgstr "Voor" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4739,17 +4756,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4759,151 +4776,194 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Webtuiste" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Ontwerp" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Gebruiker" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Webblaaier" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Lees-alleen" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Lees-skryf" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Kanselleer" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Lees-skryf" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Lees-alleen" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Herroep" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Aanhangsels" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Outeur" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Verskaffer" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 8087c02d0e..c23a8cb064 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-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:12:57+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:34:50+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "نفاذ" @@ -73,7 +73,8 @@ msgstr "مُغلق" msgid "Save access settings" msgstr "حفظ إعدادت الوصول" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "احفظ" @@ -818,7 +819,7 @@ msgstr "لا تمنع هذا المستخدم" msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -964,7 +965,7 @@ msgstr "لا تحذف هذا التطبيق" msgid "Delete this application" msgstr "احذف هذا التطبيق" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1129,6 +1130,7 @@ msgstr "استعد التصميمات المبدئية" msgid "Reset back to default" msgstr "ارجع إلى المبدئي" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1136,8 +1138,8 @@ msgstr "ارجع إلى المبدئي" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1293,9 +1295,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "ألغِ" @@ -1608,7 +1610,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا في المجموعة." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1699,25 +1701,27 @@ msgstr "قائمة بمستخدمي هذه المجموعة." msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "اجعل المستخدم إداريًا في المجموعة" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" @@ -2296,8 +2300,9 @@ msgstr "نوع المحتوى " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -2437,7 +2442,7 @@ msgid "Password saved." msgstr "حُفظت كلمة السر." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "المسارات" @@ -2645,8 +2650,9 @@ msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أ msgid "Full name" msgstr "الاسم الكامل" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحة الرئيسية" @@ -3222,7 +3228,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "الجلسات" @@ -3260,21 +3266,25 @@ msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق." msgid "Application profile" msgstr "" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "أيقونة" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "الاسم" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "المنظمة" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "الوصف" @@ -3818,7 +3828,7 @@ msgstr "لم تدخل رمزًا" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3840,7 +3850,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4272,9 +4282,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "جرّب [البحث عن مجموعات](%%action.groupsearch%%) والانضمام إليها." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4383,44 +4396,47 @@ msgstr "تعذّر إدراج الرسالة." msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "خطأ قاعدة البيانات أثناء إدخال المستخدم OAuth app" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "مشكلة في حفظ الإشعار. طويل جدًا." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "مشكلة في حفظ الإشعار. مستخدم غير معروف." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكلة أثناء حفظ الإشعار." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" @@ -4642,7 +4658,7 @@ msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "إشعار الموقع" @@ -4780,7 +4796,8 @@ msgstr "بعد" msgid "Before" msgstr "قبل" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4796,17 +4813,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "لا يمكنك إجراء تغييرات على هذا الموقع." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "التغييرات لهذه اللوحة غير مسموح بها." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4816,152 +4833,193 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "ضبط التصميم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "ضبط المستخدم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "ضبط الحساب" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "ضبط المسارات" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "ضبط الجلسات" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "عدّل إشعار الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "ضبط المسارات" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "عدّل التطبيق" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "أيقونة لهذا التطبيق" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "صف تطبيقك" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "مسار المصدر" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "مسار صفحة هذا التطبيق" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "مسار المصدر" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "متصفح" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "ألغِ" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "اسحب" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "مرفقات" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "المؤلف" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "المزود" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 770b25395a..878efe2c6b 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-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:00+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:34:53+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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -24,7 +24,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "نفاذ" @@ -78,7 +78,8 @@ msgstr "مُغلق" msgid "Save access settings" msgstr "اذف إعدادت الموقع" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -825,7 +826,7 @@ msgstr "لا تمنع هذا المستخدم" msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -976,7 +977,7 @@ msgstr "لا تحذف هذا الإشعار" msgid "Delete this application" msgstr "احذف هذا الإشعار" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1141,6 +1142,7 @@ msgstr "استعد التصميمات المبدئية" msgid "Reset back to default" msgstr "ارجع إلى المبدئي" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1148,8 +1150,8 @@ msgstr "ارجع إلى المبدئي" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1306,9 +1308,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "ألغِ" @@ -1621,7 +1623,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا فى المجموعه." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1712,25 +1714,27 @@ msgstr "قائمه بمستخدمى هذه المجموعه." msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "امنع" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" @@ -2302,8 +2306,9 @@ msgstr "نوع المحتوى " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr " مش نظام بيانات مدعوم." @@ -2443,7 +2448,7 @@ msgid "Password saved." msgstr "حُفظت كلمه السر." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "المسارات" @@ -2649,8 +2654,9 @@ msgstr "" msgid "Full name" msgstr "الاسم الكامل" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحه الرئيسية" @@ -3225,7 +3231,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "الجلسات" @@ -3263,21 +3269,25 @@ msgstr "لازم تكون مسجل دخولك علشان تشوف اى applicati msgid "Application profile" msgstr "" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "الاسم" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "المنظمه" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "الوصف" @@ -3812,7 +3822,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3834,7 +3844,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4268,9 +4278,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4378,44 +4391,47 @@ msgstr "تعذّر إدراج الرساله." msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "مشكله فى حفظ الإشعار. طويل جدًا." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "مشكله فى حفظ الإشعار. مستخدم غير معروف." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكله أثناء حفظ الإشعار." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" @@ -4653,7 +4669,7 @@ msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "إشعار الموقع" @@ -4791,7 +4807,8 @@ msgstr "بعد" msgid "Before" msgstr "قبل" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4807,17 +4824,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "التغييرات مش مسموحه للـ لوحه دى." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4827,158 +4844,199 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "ضبط التصميم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "ضبط المسارات" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "ضبط التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "ضبط المسارات" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "ضبط التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "إشعار الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "ضبط المسارات" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "اوصف الapplication بتاعتك" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "Source URL" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "Source URL" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "ألغِ" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "بطّل" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "مرفقات" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "المؤلف" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "المزود" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index d843c82a47..c2c8b92dff 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:03+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:34:56+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Достъп" @@ -73,7 +73,8 @@ msgstr "Затворен" msgid "Save access settings" msgstr "Запазване настройките за достъп" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Запазване" @@ -829,7 +830,7 @@ msgstr "Да не се блокира този потребител" msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -982,7 +983,7 @@ msgstr "Да не се изтрива бележката" msgid "Delete this application" msgstr "Изтриване на бележката" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1152,6 +1153,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1159,8 +1161,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Запазване" @@ -1325,9 +1327,9 @@ msgstr "" "Очаква се потвърждение за този адрес. Проверете кутията си (или папката за " "спам) за съобщение с указания." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Отказ" @@ -1650,7 +1652,7 @@ msgstr "Потребителят вече е блокиран за групат msgid "User is not a member of group." msgstr "Потребителят не членува в групата." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "Блокиране на потребителя" @@ -1748,26 +1750,28 @@ msgstr "Списък с потребителите в тази група." msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Блокиране" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 #, fuzzy msgid "Make user an admin of the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Поток на %s" @@ -2398,8 +2402,9 @@ msgstr "вид съдържание " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" @@ -2546,7 +2551,7 @@ msgid "Password saved." msgstr "Паролата е записана." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Пътища" @@ -2754,8 +2759,9 @@ msgstr "От 1 до 64 малки букви или цифри, без пунк msgid "Full name" msgstr "Пълно име" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Лична страница" @@ -3357,7 +3363,7 @@ msgstr "Потребителят ви е блокирал." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Сесии" @@ -3397,21 +3403,25 @@ msgstr "За напуснете група, трябва да сте влезл msgid "Application profile" msgstr "Бележката няма профил" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Икона" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Име" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Организация" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Описание" @@ -3953,7 +3963,7 @@ msgstr "Не е въведен код." #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3975,7 +3985,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4429,9 +4439,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -4543,28 +4556,29 @@ msgstr "Грешка при вмъкване на съобщението." msgid "Could not update message with new URI." msgstr "Грешка при обновяване на бележката с нов URL-адрес." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "Грешка в базата от данни — отговор при вмъкването: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Грешка при записване на бележката. Непознат потребител." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:259 +#: classes/Notice.php:260 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4573,20 +4587,22 @@ msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този сайт." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Проблем при записване на бележката." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4822,7 +4838,7 @@ msgstr "Търсене" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 #, fuzzy msgid "Site notice" msgstr "Нова бележка" @@ -4900,9 +4916,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** е услуга за микроблогване. " +msgstr "**%%site.name%%** е услуга за микроблогване." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -4963,7 +4979,8 @@ msgstr "След" msgid "Before" msgstr "Преди" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4979,18 +4996,18 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Не можете да променяте този сайт." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Записването не е позволено." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." @@ -5002,163 +5019,203 @@ msgstr "Командата все още не се поддържа." msgid "saveSettings() not implemented." msgstr "Командата все още не се поддържа." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 #, fuzzy msgid "Unable to delete design setting." msgstr "Грешка при записване настройките за Twitter" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Основна настройка на сайта" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Настройка на оформлението" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Версия" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "Настройка на пътищата" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Потребител" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "Настройка на оформлението" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Настройка на пътищата" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "Настройка на оформлението" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Нова бележка" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Настройка на пътищата" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Опишете групата или темата в до %d букви" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Опишете групата или темата" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Изходен код" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "Адрес на страница, блог или профил в друг сайт на групата" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Изходен код" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Адрес на страница, блог или профил в друг сайт на групата" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Отказ" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Премахване" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Автор" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Доставчик" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index f1329a91c1..68e61dbabf 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:07+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:34: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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Moned" @@ -72,7 +72,8 @@ msgstr "Serr" msgid "Save access settings" msgstr "Enrollañ an arventennoù moned" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" @@ -815,7 +816,7 @@ msgstr "Arabat stankañ an implijer-mañ" msgid "Yes" msgstr "Ya" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Stankañ an implijer-mañ" @@ -962,7 +963,7 @@ msgstr "Arabat eo dilemel ar poellad-mañ" msgid "Delete this application" msgstr "Dilemel ar poelad-se" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1127,6 +1128,7 @@ msgstr "Adlakaat an neuz dre ziouer." msgid "Reset back to default" msgstr "Adlakaat an arventennoù dre ziouer" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1134,8 +1136,8 @@ msgstr "Adlakaat an arventennoù dre ziouer" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Enrollañ" @@ -1291,9 +1293,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Nullañ" @@ -1603,7 +1605,7 @@ msgstr "An implijer-mañ a zo stanket dija eus ar strollad." msgid "User is not a member of group." msgstr "N'eo ket an implijer-mañ ezel eus ur strollad." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Stankañ an implijer-mañ eus ar strollad" @@ -1694,25 +1696,27 @@ msgstr "Roll an implijerien enrollet er strollad-mañ." msgid "Admin" msgstr "Merañ" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Stankañ" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Lakaat ur merour" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Lakaat an implijer-mañ da verour" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Oberezhioù %s" @@ -2293,8 +2297,9 @@ msgstr "seurt an danvez " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2434,7 +2439,7 @@ msgid "Password saved." msgstr "Ger-tremen enrollet." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Hentoù" @@ -2640,8 +2645,9 @@ msgstr "" msgid "Full name" msgstr "Anv klok" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pajenn degemer" @@ -3209,7 +3215,7 @@ msgstr "Er poull-traezh emañ dija an implijer." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Dalc'hoù" @@ -3246,21 +3252,25 @@ msgstr "Rankout a reoc'h bezañ kevreet evit gwelet ur poellad." msgid "Application profile" msgstr "Profil ar poellad" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Arlun" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Anv" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Aozadur" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Deskrivadur" @@ -3785,7 +3795,7 @@ 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 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Prim" @@ -3806,7 +3816,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4239,9 +4249,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Hizivadennoù eus %1$s e %2$s!" @@ -4348,43 +4361,46 @@ msgstr "Diposubl eo ensoc'hañ ur gemenadenn" msgid "Could not update message with new URI." msgstr "Dibosupl eo hizivaat ar gemennadenn gant un URI nevez." -#: classes/Notice.php:175 +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 #, php-format -msgid "DB error inserting hashtag: %s" +msgid "Database error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4603,7 +4619,7 @@ msgstr "Klask" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Ali al lec'hienn" @@ -4736,7 +4752,8 @@ msgstr "War-lerc'h" msgid "Before" msgstr "Kent" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4752,17 +4769,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4772,151 +4789,194 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Lec'hienn" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Implijer" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Kemmañ ali al lec'hienn" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Kemmañ an arload" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "Mammenn URL" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "Mammenn URL" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Merdeer" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Burev" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Lenn hepken" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Lenn-skrivañ" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 -msgid "Revoke" +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Nullañ" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Lenn-skrivañ" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Lenn hepken" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." msgstr "" -#: lib/attachmentlist.php:87 +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" +msgid "Revoke" +msgstr "Dilemel" + +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Pezhioù stag" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Aozer" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Pourvezer" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index c4fff296ed..df453314e6 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:10+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:05+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -24,7 +24,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Accés" @@ -78,7 +78,8 @@ msgstr "Tancat" msgid "Save access settings" msgstr "Desa els paràmetres del lloc" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Desa" @@ -441,9 +442,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Hi ha massa àlies! Màxim %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "L'àlies no és vàlid «%s»" +msgstr "L'àlies no és vàlid: \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -471,18 +472,18 @@ msgid "You have been blocked from that group by the admin." msgstr "L'administrador us ha blocat del grup." #: actions/apigroupjoin.php:138 actions/joingroup.php:134 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "No s'ha pogut afegir l'usuari %s al grup %s." +msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "No sou un membre del grup." #: actions/apigroupleave.php:124 actions/leavegroup.php:129 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "No s'ha pogut suprimir l'usuari %s del grup %s." +msgstr "No s'ha pogut suprimir l'usuari %1$s del grup %2$s." #. TRANS: %s is a user name #: actions/apigrouplist.php:97 @@ -492,9 +493,9 @@ msgstr "Grups de %s" #. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s #: actions/apigrouplist.php:107 -#, fuzzy, php-format +#, php-format msgid "%1$s groups %2$s is a member of." -msgstr "%s grups són membres de" +msgstr "%1$s grups dels que %2$s és membre." #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. @@ -696,9 +697,9 @@ msgid "%s updates from everyone!" msgstr "%s notificacions de tots!" #: actions/apitimelineretweetedtome.php:111 -#, fuzzy, php-format +#, php-format msgid "Repeated to %s" -msgstr "Respostes a %s" +msgstr "Repetida a %s" #: actions/apitimelineretweetsofme.php:114 #, php-format @@ -838,7 +839,7 @@ msgstr "No bloquis l'usuari" msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquejar aquest usuari" @@ -907,9 +908,9 @@ msgstr "Aquest codi de confirmació no és per a tu!" #. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. #: actions/confirmaddress.php:91 -#, fuzzy, php-format +#, php-format msgid "Unrecognized address type %s." -msgstr "Tipus d'adreça %s desconeguda" +msgstr "Tipus d'adreça desconeguda %s." #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 @@ -953,15 +954,13 @@ msgid "You must be logged in to delete an application." msgstr "Heu d'iniciar una sessió per editar un grup." #: actions/deleteapplication.php:71 -#, fuzzy msgid "Application not found." -msgstr "Avís sense perfil" +msgstr "No s'ha trobat l'aplicació." #: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/showapplication.php:94 -#, fuzzy msgid "You are not the owner of this application." -msgstr "No sou un membre del grup." +msgstr "No sou el propietari d'aquesta aplicació." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 @@ -970,9 +969,8 @@ msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." #: actions/deleteapplication.php:123 actions/deleteapplication.php:147 -#, fuzzy msgid "Delete application" -msgstr "No existeix aquest avís." +msgstr "Esborra aplicació" #: actions/deleteapplication.php:149 msgid "" @@ -987,11 +985,10 @@ msgid "Do not delete this application" msgstr "No es pot esborrar la notificació." #: actions/deleteapplication.php:160 -#, fuzzy msgid "Delete this application" -msgstr "Eliminar aquesta nota" +msgstr "Elimina aquesta aplicació" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1007,13 +1004,12 @@ msgid "Can't delete this notice." msgstr "No es pot esborrar la notificació." #: actions/deletenotice.php:103 -#, fuzzy msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " -"no ho podràs desfer." +"Estàs a punt d'eliminar permanentment un avís. Una vegada fet, no es podrà " +"desfer." #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" @@ -1024,9 +1020,8 @@ msgid "Are you sure you want to delete this notice?" msgstr "N'estàs segur que vols eliminar aquesta notificació?" #: actions/deletenotice.php:145 -#, fuzzy msgid "Do not delete this notice" -msgstr "No es pot esborrar la notificació." +msgstr "No elimineu aquest avís" #: actions/deletenotice.php:146 lib/noticelist.php:656 msgid "Delete this notice" @@ -1037,9 +1032,8 @@ msgid "You cannot delete users." msgstr "No podeu suprimir els usuaris." #: actions/deleteuser.php:74 -#, fuzzy msgid "You can only delete local users." -msgstr "No pots eliminar l'estatus d'un altre usuari." +msgstr "Només podeu eliminar usuaris locals." #: actions/deleteuser.php:110 actions/deleteuser.php:133 msgid "Delete user" @@ -1071,9 +1065,9 @@ msgid "Invalid logo URL." msgstr "L'URL del logotip no és vàlid." #: actions/designadminpanel.php:280 -#, fuzzy, php-format +#, php-format msgid "Theme not available: %s." -msgstr "El tema no és disponible: %s" +msgstr "Tema no disponible: %s." #: actions/designadminpanel.php:376 msgid "Change logo" @@ -1105,11 +1099,12 @@ msgid "Background" msgstr "Fons" #: actions/designadminpanel.php:428 -#, fuzzy, php-format +#, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" "$s." -msgstr "Pots pujar una imatge de logo per al grup." +msgstr "" +"Podeu pujar una imatge de fons per al lloc. La mida màxima de fitxer és %1$s." #. TRANS: Used as radio button label to add a background image. #: actions/designadminpanel.php:459 lib/designsettings.php:139 @@ -1161,6 +1156,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1168,8 +1164,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" @@ -1335,9 +1331,9 @@ msgstr "" "Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la " "carpeta de spam!) per al missatge amb les instruccions." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancel·la" @@ -1660,7 +1656,7 @@ msgstr "Un usuari t'ha bloquejat." msgid "User is not a member of group." msgstr "L'usuari no és membre del grup." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Bloca l'usuari del grup" @@ -1756,25 +1752,27 @@ msgstr "La llista dels usuaris d'aquest grup." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Bloca" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Fes l'usuari un administrador del grup" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Fes-lo administrador" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Fes l'usuari administrador" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s línia temporal" @@ -2408,8 +2406,9 @@ msgstr "tipus de contingut " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -2556,7 +2555,7 @@ msgid "Password saved." msgstr "Contrasenya guardada." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Camins" @@ -2769,8 +2768,9 @@ msgstr "" msgid "Full name" msgstr "Nom complet" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pàgina personal" @@ -3393,7 +3393,7 @@ msgstr "Un usuari t'ha bloquejat." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessions" @@ -3433,22 +3433,26 @@ msgstr "Has d'haver entrat per a poder marxar d'un grup." msgid "Application profile" msgstr "Avís sense perfil" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Nom" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Paginació" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Descripció" @@ -4000,7 +4004,7 @@ 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 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Instantànies" @@ -4022,7 +4026,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4482,9 +4486,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" @@ -4597,28 +4604,29 @@ msgstr "No s'ha pogut inserir el missatge." msgid "Could not update message with new URI." msgstr "No s'ha pogut inserir el missatge amb la nova URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Hashtag de l'error de la base de dades:%s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problema al guardar la notificació. Usuari desconegut." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4627,20 +4635,22 @@ msgstr "" "Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4881,7 +4891,7 @@ msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Avís del lloc" @@ -4956,7 +4966,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** és un servei de microblogging." @@ -5019,7 +5029,8 @@ msgstr "Posteriors" msgid "Before" msgstr "Anteriors" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5035,18 +5046,18 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "No podeu fer canvis al lloc." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Registre no permès." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." @@ -5058,164 +5069,204 @@ msgstr "Comanda encara no implementada." msgid "saveSettings() not implemented." msgstr "Comanda encara no implementada." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 #, 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:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Configuració bàsica del lloc" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Lloc" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Configuració del disseny" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Disseny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "Configuració dels camins" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuari" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "Configuració del disseny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Configuració dels camins" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "Configuració del disseny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Avís del lloc" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Configuració dels camins" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Descriu el grup amb 140 caràcters" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Descriu el grup amb 140 caràcters" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Font" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "URL del teu web, blog del grup u tema" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Font" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "URL del teu web, blog del grup u tema" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancel·la" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Suprimeix" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Adjuncions" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Autoria" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Proveïdor" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 8ca760473e..8539429fde 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:13+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:21+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "Přijmout" @@ -78,7 +78,8 @@ msgstr "Žádný takový uživatel." msgid "Save access settings" msgstr "Nastavení" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -852,7 +853,7 @@ msgstr "Žádný takový uživatel." msgid "Yes" msgstr "Ano" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -1009,7 +1010,7 @@ msgstr "Žádné takové oznámení." msgid "Delete this application" msgstr "Odstranit toto oznámení" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1183,6 +1184,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1190,8 +1192,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Uložit" @@ -1358,9 +1360,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Zrušit" @@ -1687,7 +1689,7 @@ msgstr "Uživatel nemá profil." msgid "User is not a member of group." msgstr "Neodeslal jste nám profil" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "Žádný takový uživatel." @@ -1786,25 +1788,27 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2404,8 +2408,9 @@ msgstr "Připojit" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2554,7 +2559,7 @@ msgid "Password saved." msgstr "Heslo uloženo" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2775,8 +2780,9 @@ msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" msgid "Full name" msgstr "Celé jméno" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Moje stránky" @@ -3370,7 +3376,7 @@ msgstr "Uživatel nemá profil." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3409,23 +3415,27 @@ msgstr "" msgid "Application profile" msgstr "Sdělení nemá profil" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "Přezdívka" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Umístění" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Odběry" @@ -3965,7 +3975,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3987,7 +3997,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4450,9 +4460,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4564,46 +4577,49 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "Chyba v DB při vkládání odpovědi: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:248 +#: classes/Notice.php:249 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4843,7 +4859,7 @@ msgstr "Hledat" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 #, fuzzy msgid "Site notice" msgstr "Nové sdělení" @@ -4921,7 +4937,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** je služba mikroblogů." @@ -4987,7 +5003,8 @@ msgstr "« Novější" msgid "Before" msgstr "Starší »" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5003,17 +5020,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -5023,166 +5040,206 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Nové sdělení" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Vzhled" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "Potvrzení emailové adresy" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Nové sdělení" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Potvrzení emailové adresy" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Popiš sebe a své zájmy ve 140 znacích" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Popiš sebe a své zájmy ve 140 znacích" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Zdroj" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Zdroj" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Zrušit" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Odstranit" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Poskytovatel" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index bef2eb1006..b47c8be78e 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:16+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:26+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -28,7 +28,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Zugang" @@ -79,7 +79,8 @@ msgstr "Geschlossen" msgid "Save access settings" msgstr "Zugangs-Einstellungen speichern" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Speichern" @@ -852,7 +853,7 @@ msgstr "Diesen Benutzer freigeben" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -1000,7 +1001,7 @@ msgstr "Dieses Programm nicht löschen" msgid "Delete this application" msgstr "Programm löschen" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1171,6 +1172,7 @@ msgstr "Standard-Design wiederherstellen" msgid "Reset back to default" msgstr "Standard wiederherstellen" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1178,8 +1180,8 @@ msgstr "Standard wiederherstellen" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Speichern" @@ -1338,9 +1340,9 @@ msgstr "" "Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang " "(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Abbrechen" @@ -1663,7 +1665,7 @@ msgstr "Dieser Nutzer ist bereits von der Gruppe gesperrt" msgid "User is not a member of group." msgstr "Nutzer ist kein Mitglied dieser Gruppe." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Benutzerzugang zu der Gruppe blockieren" @@ -1762,25 +1764,27 @@ msgstr "Liste der Benutzer in dieser Gruppe." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blockieren" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Zum Admin ernennen" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s Zeitleiste" @@ -2429,8 +2433,9 @@ msgstr "Content-Typ " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." @@ -2571,7 +2576,7 @@ msgid "Password saved." msgstr "Passwort gespeichert." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Pfad" @@ -2784,8 +2789,9 @@ msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen" msgid "Full name" msgstr "Vollständiger Name" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -3415,7 +3421,7 @@ msgstr "Benutzer ist schon blockiert." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sitzung" @@ -3452,21 +3458,25 @@ msgstr "Du musst angemeldet sein, um aus dieses Programm zu betrachten." msgid "Application profile" msgstr "Anwendungsprofil" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Symbol" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Name" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organisation" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Beschreibung" @@ -4035,7 +4045,7 @@ msgstr "Kein Code eingegeben" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Snapshots" @@ -4056,7 +4066,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4516,9 +4526,12 @@ msgstr "" "Versuche [Gruppen zu finden](%%action.groupsearch%%) und diesen beizutreten." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" @@ -4641,27 +4654,28 @@ msgstr "Konnte Nachricht nicht einfügen." msgid "Could not update message with new URI." msgstr "Konnte Nachricht nicht mit neuer URI versehen." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problem bei Speichern der Nachricht. Sie ist zu lang." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4669,20 +4683,22 @@ msgstr "" "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " "ein paar Minuten ab." -#: classes/Notice.php:265 +#: classes/Notice.php:266 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:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4901,7 +4917,7 @@ msgstr "Suchen" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Seitennachricht" @@ -4976,7 +4992,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** ist ein Microbloggingdienst." @@ -5043,7 +5059,8 @@ msgstr "Später" msgid "Before" msgstr "Vorher" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5059,17 +5076,17 @@ msgstr "Kann eingebundenen XML Inhalt nicht verarbeiten." msgid "Can't handle embedded Base64 content yet." msgstr "Eingebundener Base64 Inhalt kann noch nicht verarbeitet werden." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Du kannst keine Änderungen an dieser Seite vornehmen." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Änderungen an dieser Seite sind nicht erlaubt." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() noch nicht implementiert." @@ -5079,153 +5096,196 @@ msgstr "showForm() noch nicht implementiert." msgid "saveSettings() not implemented." msgstr "saveSettings() noch nicht implementiert." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Konnte die Design Einstellungen nicht löschen." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Basis Seiteneinstellungen" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Seite" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Motiv-Konfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Benutzereinstellung" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Benutzer" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Zugangskonfiguration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Pfadkonfiguration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Sitzungseinstellungen" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Seitennachricht bearbeiten" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Snapshot Konfiguration" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Programm bearbeiten" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Programmsymbol" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Beschreibe dein Programm in %d Zeichen" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Beschreibe dein Programm" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "Quelladresse" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "Adresse der Homepage dieses Programms" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "Quelladresse" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Für diese Anwendung verantwortliche Organisation" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "Homepage der Gruppe oder des Themas" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "aufzurufende Adresse nach der Authentifizierung" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Browser" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Arbeitsfläche" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Typ der Anwendung, Browser oder Arbeitsfläche" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Schreibgeschützt" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Lese/Schreibzugriff" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardeinstellung dieses Programms: Schreibgeschützt oder Lese/" "Schreibzugriff" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Abbrechen" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Lese/Schreibzugriff" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Schreibgeschützt" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Entfernen" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Anhänge" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Autor" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Anbieter" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 623474e3ec..17a78c4566 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:19+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:29+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Πρόσβαση" @@ -74,7 +74,8 @@ msgstr "Κλειστό" msgid "Save access settings" msgstr "Αποθήκευση ρυθμίσεων πρόσβασης" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Αποθήκευση" @@ -837,7 +838,7 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος msgid "Yes" msgstr "Ναι" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "" @@ -991,7 +992,7 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος msgid "Delete this application" msgstr "Περιγράψτε την ομάδα ή το θέμα" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1162,6 +1163,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1169,8 +1171,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1340,9 +1342,9 @@ msgstr "" "Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το " "φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Ακύρωση" @@ -1663,7 +1665,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "" @@ -1757,26 +1759,28 @@ msgstr "" msgid "Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 #, fuzzy msgid "Make Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "χρονοδιάγραμμα του χρήστη %s" @@ -2362,8 +2366,9 @@ msgstr "Σύνδεση" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2510,7 +2515,7 @@ msgid "Password saved." msgstr "Ο κωδικός αποθηκεύτηκε." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2723,8 +2728,9 @@ msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημε msgid "Full name" msgstr "Ονοματεπώνυμο" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Αρχική σελίδα" @@ -3327,7 +3333,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3365,23 +3371,27 @@ msgstr "" msgid "Application profile" msgstr "" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "Ψευδώνυμο" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Προσκλήσεις" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Περιγραφή" @@ -3917,7 +3927,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3939,7 +3949,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4379,9 +4389,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4493,43 +4506,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4765,7 +4781,7 @@ msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "" @@ -4840,10 +4856,10 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" -"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " +"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου)." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -4901,7 +4917,8 @@ msgstr "" msgid "Before" msgstr "" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4917,17 +4934,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4937,161 +4954,201 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Προσωπικά" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Διαγραφή μηνύματος" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Επιβεβαίωση διεύθυνσης email" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι %d χαρακτήρες" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Περιγράψτε την ομάδα ή το θέμα" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Ακύρωση" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +msgctxt "BUTTON" msgid "Revoke" msgstr "" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index f6d2009328..c8c06c174d 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:22+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:33+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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Access" @@ -74,7 +74,8 @@ msgstr "Closed" msgid "Save access settings" msgstr "Save access settings" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -840,7 +841,7 @@ msgstr "Do not block this user" msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Block this user" @@ -989,7 +990,7 @@ msgstr "Do not delete this application" msgid "Delete this application" msgstr "Delete this application" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1160,6 +1161,7 @@ msgstr "Restore default designs" msgid "Reset back to default" msgstr "Reset back to default" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1167,8 +1169,8 @@ msgstr "Reset back to default" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Save" @@ -1326,9 +1328,9 @@ msgstr "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancel" @@ -1648,7 +1650,7 @@ msgstr "User is already blocked from group." msgid "User is not a member of group." msgstr "User is not a member of group." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Block user from group" @@ -1745,25 +1747,27 @@ msgstr "A list of the users in this group." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Block" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Make user an admin of the group" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Make admin" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Make this user an admin" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s timeline" @@ -2391,8 +2395,9 @@ msgstr "content type " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -2532,7 +2537,7 @@ msgid "Password saved." msgstr "Password saved." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2741,8 +2746,9 @@ msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" msgid "Full name" msgstr "Full name" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -3349,7 +3355,7 @@ msgstr "User is already sandboxed." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3386,21 +3392,25 @@ msgstr "You must be logged in to view an application." msgid "Application profile" msgstr "Application profile" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Name" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organization" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -3958,7 +3968,7 @@ msgstr "No code entered" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3980,7 +3990,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4428,9 +4438,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" @@ -4547,26 +4560,27 @@ msgstr "Could not insert message." msgid "Could not update message with new URI." msgstr "Could not update message with new URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "DB error inserting hashtag: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problem saving notice. Too long." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problem saving notice. Unknown user." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4574,19 +4588,21 @@ msgstr "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problem saving notice." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problem saving group inbox." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4823,7 +4839,7 @@ msgstr "Search" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Site notice" @@ -4898,7 +4914,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is a microblogging service." @@ -4961,7 +4977,8 @@ msgstr "After" msgid "Before" msgstr "Before" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4977,17 +4994,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "You cannot make changes to this site." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Changes to that panel are not allowed." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() not implemented." @@ -4997,155 +5014,196 @@ msgstr "showForm() not implemented." msgid "saveSettings() not implemented." msgstr "saveSettings() not implemented." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Unable to delete design setting." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Basic site configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Design configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "User configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "User" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Access configuration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Paths configuration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Sessions configuration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Site notice" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Paths configuration" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Describe your application in %d characters" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Describe your application" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "Source URL" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL of the homepage of this application" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "Source URL" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organisation responsible for this application" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL for the homepage of the organisation" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancel" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Revoke" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Provider" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 648afdc8ca..f714ea20ff 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:27+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:36+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -26,7 +26,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Acceder" @@ -76,7 +76,8 @@ msgstr "Cerrado" msgid "Save access settings" msgstr "Guardar la configuración de acceso" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Guardar" @@ -84,9 +85,8 @@ msgstr "Guardar" #. 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 -#, fuzzy msgid "No such page." -msgstr "No existe tal página" +msgstr "No existe tal página." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -236,13 +236,12 @@ msgid "This method requires a POST." msgstr "Este método requiere un POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "Tienes que especificar un parámetro llamdao 'dispositivo' con un valor a " -"elegir entre: sms, im, ninguno" +"elegir entre: sms, im, ninguno." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -442,9 +441,9 @@ msgid "Too many aliases! Maximum %d." msgstr "¡Muchos seudónimos! El máximo es %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Alias inválido: \"%s\"" +msgstr "Alias inválido: \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -460,9 +459,8 @@ msgstr "El alias no puede ser el mismo que el usuario." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "¡No se ha encontrado el grupo!" +msgstr "Grupo no encontrado." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -494,9 +492,9 @@ msgstr "Grupos de %s" #. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s #: actions/apigrouplist.php:107 -#, fuzzy, php-format +#, php-format msgid "%1$s groups %2$s is a member of." -msgstr "%s es miembro de los grupos" +msgstr "%1$s grupos %2$s es un miembro de." #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. @@ -846,7 +844,7 @@ msgstr "No bloquear a este usuario" msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario." @@ -897,9 +895,9 @@ msgstr "Desbloquear este usuario" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Mensaje a " +msgstr "Postear a %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -915,9 +913,9 @@ msgstr "¡Ese código de confirmación no es para ti!" #. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. #: actions/confirmaddress.php:91 -#, fuzzy, php-format +#, php-format msgid "Unrecognized address type %s." -msgstr "Tipo de dirección %s desconocida" +msgstr "Tipo de dirección %s desconocida." #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 @@ -996,7 +994,7 @@ msgstr "No eliminar esta aplicación" msgid "Delete this application" msgstr "Borrar esta aplicación" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1075,9 +1073,9 @@ msgid "Invalid logo URL." msgstr "URL de logotipo inválido." #: actions/designadminpanel.php:280 -#, fuzzy, php-format +#, php-format msgid "Theme not available: %s." -msgstr "Tema no disponible" +msgstr "Tema no disponible: %s." #: actions/designadminpanel.php:376 msgid "Change logo" @@ -1167,6 +1165,7 @@ msgstr "Restaurar los diseños predeterminados" msgid "Reset back to default" msgstr "Volver a los valores predeterminados" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1174,8 +1173,8 @@ msgstr "Volver a los valores predeterminados" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" @@ -1333,9 +1332,9 @@ msgstr "" "Esperando confirmación de esta dirección. Revisa tu bandeja de entrada (¡y " "la de spam!) por un mensaje con las instrucciones." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -1600,9 +1599,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "El servicio remoto utiliza una versión desconocida del protocolo OMB." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Error al actualizar el perfil remoto" +msgstr "Error al actualizar el perfil remoto." #: actions/getfile.php:79 msgid "No such file." @@ -1657,7 +1655,7 @@ msgstr "Usuario ya está bloqueado del grupo." msgid "User is not a member of group." msgstr "Usuario no es miembro del grupo" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Bloquear usuario de grupo" @@ -1757,25 +1755,27 @@ msgstr "Lista de los usuarios en este grupo." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Convertir al usuario en administrador del grupo" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Convertir en administrador" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Convertir a este usuario en administrador" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "línea temporal de %s" @@ -1979,9 +1979,9 @@ msgid "Invites have been disabled." msgstr "Se han inhabilitado las invitaciones." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "Debes estar conectado para invitar otros usuarios a usar %s" +msgstr "Debes estar conectado para invitar otros usuarios a usar %s." #: actions/invite.php:72 #, php-format @@ -2213,9 +2213,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "No es posible convertir a %1$s en administrador del grupo %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "No existe estado actual" +msgstr "No existe estado actual." #: actions/newapplication.php:52 msgid "New Application" @@ -2381,9 +2380,9 @@ msgid "You are not a user of that application." msgstr "No eres un usuario de esa aplicación." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "No se puede revocar el acceso para la aplicación: " +msgstr "No se puede revocar el acceso para la aplicación: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2396,9 +2395,8 @@ msgstr "" "aplicaciones " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Aviso sin perfil" +msgstr "Aviso no tiene perfil." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2407,18 +2405,19 @@ msgstr "estado de %1$s en %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "tipo de contenido " +msgstr "Tipo de contenido %s no soportado." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "Solamente %s URLs sobre HTTP simples por favor." -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" @@ -2559,7 +2558,7 @@ msgid "Password saved." msgstr "Se guardó Contraseña." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Rutas" @@ -2569,19 +2568,19 @@ msgstr "" "Configuración de la ruta de acceso y del servidor de este sitio StatusNet." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Directorio de temas ilegible: %s" +msgstr "Directorio de temas ilegible: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Directorio de imágenes no editable: %s" +msgstr "Directorio de avatares no escribible: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Directorio de fondo ilegible: %s" +msgstr "Directorio de fondo no escribible: %s." #: actions/pathsadminpanel.php:177 #, fuzzy, php-format @@ -2726,9 +2725,9 @@ msgid "People search" msgstr "Buscador de gente" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "No es una etiqueta válida para personas: %s" +msgstr "No es una etiqueta válida para personas: %s." #: actions/peopletag.php:142 #, php-format @@ -2736,9 +2735,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios auto etiquetados con %1$s - página %2$d" #: actions/postnotice.php:95 -#, fuzzy msgid "Invalid notice content." -msgstr "El contenido del aviso es inválido" +msgstr "Contenido de aviso inválido." #: actions/postnotice.php:101 #, php-format @@ -2772,8 +2770,9 @@ msgstr "" msgid "Full name" msgstr "Nombre completo" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página de inicio" @@ -2883,9 +2882,9 @@ msgid "Settings saved." msgstr "Se guardó configuración." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Más allá del límite de páginas (%s)" +msgstr "Más allá del límite de páginas (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3152,13 +3151,12 @@ msgid "Invalid username or password." msgstr "Usuario o contraseña inválidos." #: actions/register.php:343 -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" "Con este formulario puedes crear una nueva cuenta. Después podrás publicar " -"avisos y enviar vínculos de ellos a tus amigos y compañeros. " +"avisos y enviar vínculos de ellos a tus amigos y colegas. " #: actions/register.php:425 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." @@ -3190,13 +3188,14 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nombre más largo, preferiblemente tu nombre \"real\"" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -"con excepción de esta información privada: contraseña, dirección de correo " -"electrónico, dirección de mensajería instantánea y número de teléfono." +"Mi texto y archivos están disponibles bajo %s con excepción de esta " +"información privada: contraseña, dirección de correo electrónico, dirección " +"de mensajería instantánea y número de teléfono." #: actions/register.php:542 #, php-format @@ -3402,7 +3401,7 @@ msgstr "El usuario ya está en la zona de pruebas." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sesiones" @@ -3439,21 +3438,25 @@ msgstr "Tienes que haber iniciado sesión para poder ver aplicaciones." msgid "Application profile" msgstr "Perfil de la aplicación" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Icono" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Nombre" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organización" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Descripción" @@ -3900,11 +3903,10 @@ msgid "Unable to save site notice." msgstr "No se pudo guarda el aviso del sitio." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." msgstr "" "La longitud máxima para el aviso que va a lo ancho del sitio es de 255 " -"caracteres" +"caracteres." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -4023,7 +4025,7 @@ msgstr "No ingresó código" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Capturas" @@ -4044,7 +4046,8 @@ msgid "Invalid snapshot report URL." msgstr "URL de instantánea de reporte inválido" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "Aleatoriamente durante visita Web" #: actions/snapshotadminpanel.php:201 @@ -4278,9 +4281,8 @@ msgid "User is not silenced." msgstr "El usuario no ha sido silenciado." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." -msgstr "No hay id de perfil solicitado." +msgstr "No hay id de perfil en solicitud." #: actions/unsubscribe.php:98 msgid "Unsubscribed" @@ -4502,9 +4504,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Intenta [buscar gupos](%%action.groupsearch%%) y unirte a ellos." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" @@ -4626,27 +4631,28 @@ msgstr "No se pudo insertar mensaje." msgid "Could not update message with new URI." msgstr "No se pudo actualizar mensaje con nuevo URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Error de la BD al insertar la etiqueta clave: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Ha habido un problema al guardar el mensaje. Es muy largo." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Ha habido un problema al guardar el mensaje. Usuario desconocido." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4654,19 +4660,21 @@ msgstr "" "Muchos mensajes, enviados muy rápido; espera un poco e intenta publicar " "pasados unos minutos." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Hubo un problema al guarda la bandeja de entrada del grupo." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4885,7 +4893,7 @@ msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Aviso de sitio" @@ -4960,7 +4968,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblogueo." @@ -5026,7 +5034,8 @@ msgstr "Después" msgid "Before" msgstr "Antes" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "A espera de un elemento de alimentación de raíz, pero se obtuvo un documento " @@ -5044,17 +5053,17 @@ msgstr "Aún no se puede manejar contenido XML incrustado." msgid "Can't handle embedded Base64 content yet." msgstr "Aún no se puede manejar contenido incrustado Base64." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "No puedes hacer cambios a este sitio." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "No se permite realizar cambios a ese panel." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() no implementada." @@ -5064,155 +5073,197 @@ msgstr "showForm() no implementada." msgid "saveSettings() not implemented." msgstr "saveSettings() no implementada." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "No se puede eliminar la configuración de diseño." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Configuración básica del sitio" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Sitio" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Configuración del diseño" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Diseño" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Configuración de usuario" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Configuración de acceso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Configuración de rutas" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Configuración de sesiones" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Editar el aviso del sitio" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Configuración de instantáneas" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API requiere acceso de lectura y escritura, pero sólo tienes acceso de " "lectura." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"Ha fallado el intento de auth API, usuario = %1$s, proxy = %2$s, ip = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Editar aplicación" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Icono para esta aplicación" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Describe tu aplicación en %d caracteres" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Describe tu aplicación" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "La URL de origen" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL de la página principal de esta aplicación" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "La URL de origen" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organización responsable de esta aplicación" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL de la página principal de la organización" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL al que se redirigirá después de la autenticación" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Navegador" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Escritorio" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador o de escritorio" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Solo lectura" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Solo escritura" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancelar" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Solo escritura" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Solo lectura" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Adjuntos" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Autor" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Proveedor" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 2390c6b422..db5deb6e32 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-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:33+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:52+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,12 +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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "دسترسی" @@ -75,7 +75,8 @@ msgstr "مسدود" msgid "Save access settings" msgstr "ذخیره‌ی تنظیمات دسترسی" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "ذخیره" @@ -836,7 +837,7 @@ msgstr "کاربر را مسدود نکن" msgid "Yes" msgstr "بله" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -992,7 +993,7 @@ msgstr "این پیام را پاک نکن" msgid "Delete this application" msgstr "این پیام را پاک کن" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1163,6 +1164,7 @@ msgstr "بازگرداندن طرح‌های پیش‌فرض" msgid "Reset back to default" msgstr "برگشت به حالت پیش گزیده" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1170,8 +1172,8 @@ msgstr "برگشت به حالت پیش گزیده" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "ذخیره‌کردن" @@ -1338,9 +1340,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "انصراف" @@ -1661,7 +1663,7 @@ msgstr "هم اکنون دسترسی کاربر به گروه مسدود شده msgid "User is not a member of group." msgstr "کاربر عضو گروه نیست." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "دسترسی کاربر به گروه را مسدود کن" @@ -1752,25 +1754,27 @@ msgstr "یک فهرست از کاربران در این گروه" msgid "Admin" msgstr "مدیر" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "بازداشتن" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "کاربر یک مدیر گروه شود" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "مدیر شود" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "خط زمانی %s" @@ -2383,8 +2387,9 @@ msgstr "نوع محتوا " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -2531,7 +2536,7 @@ msgid "Password saved." msgstr "گذرواژه ذخیره شد." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "مسیر ها" @@ -2742,8 +2747,9 @@ msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذ msgid "Full name" msgstr "نام‌کامل" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "صفحهٔ خانگی" @@ -3323,7 +3329,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3363,23 +3369,27 @@ msgstr "برای ترک یک گروه، شما باید وارد شده باشی msgid "Application profile" msgstr "ابن خبر ذخیره ای ندارد ." -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "نام کاربری" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "صفحه بندى" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "" @@ -3921,7 +3931,7 @@ msgstr "کدی وارد نشد" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3943,7 +3953,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4378,9 +4388,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "به روز رسانی‌های %1$s در %2$s" @@ -4491,27 +4504,28 @@ msgstr "پیغام نمی تواند درج گردد" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 #, php-format -msgid "DB error inserting hashtag: %s" +msgid "Database error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "تعداد خیلی زیاد آگهی و بسیار سریع؛ استراحت کنید و مجددا دقایقی دیگر ارسال " "کنید." -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4519,20 +4533,22 @@ msgstr "" "تعداد زیاد پیام های دو نسخه ای و بسرعت؛ استراحت کنید و دقایقی دیگر مجددا " "ارسال کنید." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "شما از فرستادن پست در این سایت مردود شدید ." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "مشکل در ذخیره کردن آگهی." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4769,7 +4785,7 @@ msgstr "جست‌وجو" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "خبر سایت" @@ -4902,7 +4918,8 @@ msgstr "بعد از" msgid "Before" msgstr "قبل از" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4918,18 +4935,18 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "شما نمی توانید در این سایت تغیری ایجاد کنید" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "اجازه‌ی ثبت نام داده نشده است." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4939,160 +4956,200 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "پیکره بندی اصلی سایت" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "سایت" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "طرح" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "پیکره بندی اصلی سایت" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "کاربر" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "پیکره بندی اصلی سایت" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "پیکره بندی اصلی سایت" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "خبر سایت" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "پیکره بندی اصلی سایت" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "" -#: lib/applicationeditform.php:216 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +msgid "URL of the homepage of this application" +msgstr "" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 #, fuzzy msgid "Source URL" msgstr "منبع" -#: lib/applicationeditform.php:218 -msgid "URL of the homepage of this application" -msgstr "" - -#: lib/applicationeditform.php:224 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "انصراف" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "حذف" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "ضمائم" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "مؤلف" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "مهیا کننده" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 6d34dbe3d2..0b36994205 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:30+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:48+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "Hyväksy" @@ -80,7 +80,8 @@ msgstr "Estä" msgid "Save access settings" msgstr "Profiilikuva-asetukset" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -857,7 +858,7 @@ msgstr "Älä estä tätä käyttäjää" msgid "Yes" msgstr "Kyllä" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -1011,7 +1012,7 @@ msgstr "Älä poista tätä päivitystä" msgid "Delete this application" msgstr "Poista tämä päivitys" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1187,6 +1188,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1194,8 +1196,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Tallenna" @@ -1368,9 +1370,9 @@ msgstr "" "sähköpostilaatikostasi (ja roskapostikansiosta!) viesti, jossa on " "lisäohjeita. " +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Peruuta" @@ -1697,7 +1699,7 @@ msgstr "Käyttäjä on asettanut eston sinulle." msgid "User is not a member of group." msgstr "Käyttäjä ei kuulu tähän ryhmään." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Estä käyttäjä ryhmästä" @@ -1790,25 +1792,27 @@ msgstr "Lista ryhmän käyttäjistä." msgid "Admin" msgstr "Ylläpito" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Estä" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Tee tästä käyttäjästä ylläpitäjä" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Tee ylläpitäjäksi" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Tee tästä käyttäjästä ylläpitäjä" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s aikajana" @@ -2451,8 +2455,9 @@ msgstr "Yhdistä" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -2599,7 +2604,7 @@ msgid "Password saved." msgstr "Salasana tallennettu." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Polut" @@ -2825,8 +2830,9 @@ msgstr "" msgid "Full name" msgstr "Koko nimi" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Kotisivu" @@ -3451,7 +3457,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3492,23 +3498,27 @@ msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." msgid "Application profile" msgstr "Päivitykselle ei ole profiilia" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "Tunnus" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Sivutus" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Kuvaus" @@ -4062,7 +4072,7 @@ msgstr "Koodia ei ole syötetty." #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -4084,7 +4094,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4549,9 +4559,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -4664,28 +4677,29 @@ msgstr "Viestin tallennus ei onnistunut." msgid "Could not update message with new URI." msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4693,20 +4707,22 @@ 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:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4948,7 +4964,7 @@ msgstr "Haku" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Palvelun ilmoitus" @@ -5024,9 +5040,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** on mikroblogipalvelu. " +msgstr "**%%site.name%%** on mikroblogipalvelu." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5088,7 +5104,8 @@ msgstr "Myöhemmin" msgid "Before" msgstr "Aiemmin" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5104,19 +5121,19 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Et voi lähettää viestiä tälle käyttäjälle." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Rekisteröityminen ei ole sallittu." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." @@ -5128,167 +5145,207 @@ msgstr "Komentoa ei ole vielä toteutettu." msgid "saveSettings() not implemented." msgstr "Komentoa ei ole vielä toteutettu." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 #, fuzzy msgid "Unable to delete design setting." msgstr "Twitter-asetuksia ei voitu tallentaa!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "Sähköpostiosoitteen vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Kutsu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "SMS vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Ulkoasu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "SMS vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Käyttäjä" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "SMS vahvistus" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "SMS vahvistus" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "SMS vahvistus" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Palvelun ilmoitus" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "SMS vahvistus" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Lähdekoodi" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Lähdekoodi" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Peruuta" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Poista" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "Profiili" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index cb8b5c634b..0e0fc639a6 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:36+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:35:56+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -27,7 +27,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Accès" @@ -77,7 +77,8 @@ msgstr "Fermé" msgid "Save access settings" msgstr "Sauvegarder les paramètres d’accès" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -853,7 +854,7 @@ msgstr "Ne pas bloquer cet utilisateur" msgid "Yes" msgstr "Oui" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquer cet utilisateur" @@ -1002,7 +1003,7 @@ msgstr "Ne pas supprimer cette application" msgid "Delete this application" msgstr "Supprimer cette application" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1173,6 +1174,7 @@ msgstr "Restaurer les conceptions par défaut" msgid "Reset back to default" msgstr "Revenir aux valeurs par défaut" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1180,8 +1182,8 @@ msgstr "Revenir aux valeurs par défaut" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Enregistrer" @@ -1339,9 +1341,9 @@ msgstr "" "En attente d’une confirmation pour cette adresse. Vérifiez votre boîte de " "réception (et celle de spam !) pour recevoir de nouvelles instructions." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Annuler" @@ -1660,7 +1662,7 @@ msgstr "Cet utilisateur est déjà bloqué pour le groupe." msgid "User is not a member of group." msgstr "L’utilisateur n’est pas membre du groupe." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Bloquer cet utilisateur du groupe" @@ -1759,25 +1761,27 @@ msgstr "Liste des utilisateurs inscrits à ce groupe." msgid "Admin" msgstr "Administrer" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Bloquer" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Faire de cet utilisateur un administrateur du groupe" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Faire un administrateur" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Faire de cet utilisateur un administrateur" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Activité de %s" @@ -2432,8 +2436,9 @@ msgstr "Type de contenu %s non supporté." msgid "Only %s URLs over plain HTTP please." msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s." -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -2574,7 +2579,7 @@ msgid "Password saved." msgstr "Mot de passe enregistré." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Chemins" @@ -2786,8 +2791,9 @@ msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" msgid "Full name" msgstr "Nom complet" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site personnel" @@ -3166,7 +3172,6 @@ msgid "Invalid username or password." msgstr "Identifiant ou mot de passe incorrect." #: actions/register.php:343 -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " @@ -3420,7 +3425,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessions" @@ -3457,21 +3462,25 @@ msgstr "Vous devez être connecté pour voir une application." msgid "Application profile" msgstr "Profil de l’application" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Icône" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Nom" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organisation" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -4044,7 +4053,7 @@ msgstr "Aucun code entré" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Instantanés" @@ -4065,7 +4074,8 @@ msgid "Invalid snapshot report URL." msgstr "URL de rapport d’instantanés invalide." #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "Au hasard lors des requêtes web" #: actions/snapshotadminpanel.php:201 @@ -4530,9 +4540,12 @@ msgstr "" "inscrire." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" @@ -4653,27 +4666,28 @@ msgstr "Impossible d’insérer le message." msgid "Could not update message with new URI." msgstr "Impossible de mettre à jour le message avec un nouvel URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problème lors de l’enregistrement de l’avis ; trop long." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Erreur lors de l’enregistrement de l’avis. Utilisateur inconnu." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4681,19 +4695,21 @@ msgstr "" "Trop de messages en double trop vite ! Prenez une pause et publiez à nouveau " "dans quelques minutes." -#: classes/Notice.php:265 +#: classes/Notice.php:266 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:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4911,7 +4927,7 @@ msgstr "Rechercher" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Notice du site" @@ -4976,17 +4992,17 @@ msgstr "Licence du logiciel StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" -"**%%site.name%%** est un service de microblogging qui vous est proposé par " -"[%%site.broughtby%%](%%site.broughtbyurl%%)." +"**%%site.name%%** est un service de microblogging qui vous est proposé par [%" +"%site.broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** est un service de micro-blogging." @@ -5054,7 +5070,8 @@ msgstr "Après" msgid "Before" msgstr "Avant" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "Attendait un élément racine mais a reçu tout un document XML." @@ -5070,17 +5087,17 @@ msgstr "Impossible de gérer le contenu XML embarqué pour le moment." msgid "Can't handle embedded Base64 content yet." msgstr "Impossible de gérer le contenu en Base64 embarqué pour le moment." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Vous ne pouvez pas faire de modifications sur ce site." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "La modification de ce panneau n’est pas autorisée." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() n’a pas été implémentée." @@ -5090,157 +5107,198 @@ msgstr "showForm() n’a pas été implémentée." msgid "saveSettings() not implemented." msgstr "saveSettings() n’a pas été implémentée." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Impossible de supprimer les paramètres de conception." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Configuration basique du site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Configuration de la conception" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Conception" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Configuration utilisateur" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Utilisateur" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Configuration d’accès" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Configuration des chemins" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Configuration des sessions" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Modifier l'avis du site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Configuration des instantanés" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "La ressource de l’API a besoin de l’accès en lecture et en écriture, mais " "vous n’y avez accès qu’en lecture." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"L’essai d’authentification de l’API a échoué ; pseudo = %1$s, proxy = %2$s, " -"ip = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Modifier votre application" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Icône pour cette application" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Décrivez votre application en %d caractères" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Décrivez votre application" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "URL source" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL de la page d’accueil de cette application" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "URL source" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organisation responsable de cette application" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL de la page d’accueil de l’organisation" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL vers laquelle rediriger après l’authentification" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Navigateur" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Bureau" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Type d’application, navigateur ou bureau" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Lecture seule" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Lecture-écriture" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accès par défaut pour cette application : en lecture seule ou en lecture-" "écriture" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Annuler" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Lecture-écriture" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Lecture seule" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Révoquer" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Pièces jointes" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Auteur" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Fournisseur" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index f56e0a5efb..7b64c2712e 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-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:39+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:00+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "Aceptar" @@ -79,7 +79,8 @@ msgstr "Bloquear" msgid "Save access settings" msgstr "Configuracións de Twitter" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -861,7 +862,7 @@ msgstr "Bloquear usuario" msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" @@ -1020,7 +1021,7 @@ msgstr "Non se pode eliminar este chíos." msgid "Delete this application" msgstr "Eliminar chío" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1203,6 +1204,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1210,8 +1212,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1389,9 +1391,9 @@ msgstr "" "GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " "a %s á túa lista de contactos?)" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -1721,7 +1723,7 @@ msgstr "O usuario bloqueoute." msgid "User is not a member of group." msgstr "%1s non é unha orixe fiable." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "Bloquear usuario" @@ -1822,25 +1824,27 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Liña de tempo de %s" @@ -2480,8 +2484,9 @@ msgstr "Conectar" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -2630,7 +2635,7 @@ msgid "Password saved." msgstr "Contrasinal gardada." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2854,8 +2859,9 @@ msgstr "" msgid "Full name" msgstr "Nome completo" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -3486,7 +3492,7 @@ msgstr "O usuario bloqueoute." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3526,23 +3532,27 @@ msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" msgid "Application profile" msgstr "O chío non ten perfil" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "Alcume" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Invitación(s) enviada(s)." +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Subscricións" @@ -4112,7 +4122,7 @@ 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 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -4134,7 +4144,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4603,9 +4613,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -4718,28 +4731,29 @@ msgstr "Non se pode inserir unha mensaxe." msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe coa nova URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Erro ó inserir o hashtag na BD: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4748,20 +4762,22 @@ msgstr "" "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " "duns minutos." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Tes restrinxido o envio de chíos neste sitio." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -5003,7 +5019,7 @@ msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 #, fuzzy msgid "Site notice" msgstr "Novo chío" @@ -5081,7 +5097,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é un servizo de microbloguexo." @@ -5147,7 +5163,8 @@ msgstr "« Despois" msgid "Before" msgstr "Antes »" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5163,19 +5180,19 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Non podes enviar mensaxes a este usurio." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Non se permite o rexistro neste intre." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." @@ -5187,167 +5204,207 @@ msgstr "Comando non implementado." msgid "saveSettings() not implemented." msgstr "Comando non implementado." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 #, 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:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "Confirmar correo electrónico" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Invitar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Persoal" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Novo chío" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Confirmación de SMS" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Fonte" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Fonte" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancelar" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Eliminar" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "Perfil" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 1f8fa91280..1d1a2ba8bd 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:42+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:03+0000\n" "Language-Team: Galician\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: out-statusnet\n" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Acceso" @@ -72,7 +72,8 @@ msgstr "Pechado" msgid "Save access settings" msgstr "Gardar a configuración de acceso" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Gardar" @@ -845,7 +846,7 @@ msgstr "Non bloquear este usuario" msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario" @@ -994,7 +995,7 @@ msgstr "Non borrar a aplicación" msgid "Delete this application" msgstr "Borrar a aplicación" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1165,6 +1166,7 @@ msgstr "Restaurar o deseño por defecto" msgid "Reset back to default" msgstr "Volver ao deseño por defecto" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1172,8 +1174,8 @@ msgstr "Volver ao deseño por defecto" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1331,9 +1333,9 @@ msgstr "" "Agardando pola confirmación deste enderezo. Busque unha mensaxe con máis " "instrucións na súa bandexa de entrada (e na de correo non desexado!)." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -1657,7 +1659,7 @@ msgstr "O usuario xa está excluído do grupo." msgid "User is not a member of group." msgstr "O usuario non pertence ao grupo." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Excluír do grupo ao usuario" @@ -1755,25 +1757,27 @@ msgstr "Unha lista dos usuarios pertencentes a este grupo." msgid "Admin" msgstr "Administrador" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Excluír" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Converter ao usuario en administrador do grupo" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Converter en administrador" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Converter a este usuario en administrador" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Liña do tempo de %s" @@ -2414,8 +2418,9 @@ msgstr "tipo de contido " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Non se soporta ese formato de datos." @@ -2558,7 +2563,7 @@ msgid "Password saved." msgstr "Gardouse o contrasinal." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Rutas" @@ -2620,11 +2625,11 @@ msgstr "Ruta do directorio das traducións" #: actions/pathsadminpanel.php:250 msgid "Fancy URLs" -msgstr "Enderezos URL agradables" +msgstr "Enderezos URL elegantes" #: actions/pathsadminpanel.php:252 msgid "Use fancy (more readable and memorable) URLs?" -msgstr "Quere utilizar enderezos URL agradables (mellores de ler e lembrar)?" +msgstr "Quere utilizar os enderezos URL elegantes (mellores de ler e lembrar)?" #: actions/pathsadminpanel.php:259 msgid "Theme" @@ -2771,8 +2776,9 @@ msgstr "" msgid "Full name" msgstr "Nome completo" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -3355,7 +3361,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3392,21 +3398,25 @@ msgstr "" msgid "Application profile" msgstr "" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "" @@ -3928,7 +3938,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3949,7 +3959,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4380,9 +4390,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4489,43 +4502,48 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "" +"Houbo un erro na base de datos ao intentar inserir o usuario da aplicación " +"OAuth." -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4743,7 +4761,7 @@ msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "" @@ -4876,7 +4894,8 @@ msgstr "" msgid "Before" msgstr "" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4892,17 +4911,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4912,151 +4931,192 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 -msgid "Revoke" +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancelar" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" msgstr "" -#: lib/attachmentlist.php:87 +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" +msgid "Revoke" +msgstr "Borrar" + +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index aec735028e..ab30f9d503 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:46+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:06+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -20,7 +20,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "קבל" @@ -76,7 +76,8 @@ msgstr "אין משתמש כזה." msgid "Save access settings" msgstr "הגדרות" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -851,7 +852,7 @@ msgstr "אין משתמש כזה." msgid "Yes" msgstr "כן" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." @@ -1009,7 +1010,7 @@ msgstr "אין הודעה כזו." msgid "Delete this application" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1188,6 +1189,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1195,8 +1197,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "שמור" @@ -1365,9 +1367,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "בטל" @@ -1694,7 +1696,7 @@ msgstr "למשתמש אין פרופיל." msgid "User is not a member of group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "אין משתמש כזה." @@ -1794,25 +1796,27 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2412,8 +2416,9 @@ msgstr "התחבר" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2562,7 +2567,7 @@ msgid "Password saved." msgstr "הסיסמה נשמרה." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2782,8 +2787,9 @@ msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, לל msgid "Full name" msgstr "שם מלא" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "אתר בית" @@ -3374,7 +3380,7 @@ msgstr "למשתמש אין פרופיל." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3413,23 +3419,27 @@ msgstr "" msgid "Application profile" msgstr "להודעה אין פרופיל" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "כינוי" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "מיקום" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "הרשמות" @@ -3968,7 +3978,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3990,7 +4000,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4453,9 +4463,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4567,46 +4580,49 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:248 +#: classes/Notice.php:249 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4846,7 +4862,7 @@ msgstr "חיפוש" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" @@ -4924,7 +4940,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** הוא שרות ביקרובלוג." @@ -4990,7 +5006,8 @@ msgstr "<< אחרי" msgid "Before" msgstr "לפני >>" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5006,17 +5023,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -5026,165 +5043,205 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "הרשמות" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "הודעה חדשה" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "אישי" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "הרשמות" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "מתשמש" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "הרשמות" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "הרשמות" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "הרשמות" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "הודעה חדשה" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "הרשמות" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "מקור" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "מקור" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "בטל" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "הסר" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "פרופיל" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index d54f7577b6..c7afc53d2d 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-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:50+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:09+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Přistup" @@ -73,7 +73,8 @@ msgstr "Začinjeny" msgid "Save access settings" msgstr "Přistupne nastajenja składować" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Składować" @@ -816,7 +817,7 @@ msgstr "Tutoho wužiwarja njeblokować" msgid "Yes" msgstr "Haj" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -962,7 +963,7 @@ msgstr "Tutu aplikaciju njezničić" msgid "Delete this application" msgstr "Tutu aplikaciju zničić" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1128,6 +1129,7 @@ msgstr "Standardne designy wobnowić" msgid "Reset back to default" msgstr "Na standard wróćo stajić" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1135,8 +1137,8 @@ msgstr "Na standard wróćo stajić" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Składować" @@ -1292,9 +1294,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Přetorhnyć" @@ -1604,7 +1606,7 @@ msgstr "Wužiwar je hižo za skupinu zablokowany." msgid "User is not a member of group." msgstr "Wužiwar njeje čłon skupiny." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Wužiwarja za skupinu blokować" @@ -1697,25 +1699,27 @@ msgstr "Lisćina wužiwarjow w tutej skupinje." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blokować" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej činić" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2286,8 +2290,9 @@ msgstr "" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." @@ -2427,7 +2432,7 @@ msgid "Password saved." msgstr "Hesło składowane." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Šćežki" @@ -2633,8 +2638,9 @@ msgstr "" msgid "Full name" msgstr "Dospołne mjeno" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Startowa strona" @@ -3202,7 +3208,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Posedźenja" @@ -3239,21 +3245,25 @@ msgstr "Dyrbiš přizjewjeny być, zo by sej aplikaciju wobhladał." msgid "Application profile" msgstr "Aplikaciski profil" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Mjeno" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organizacija" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Wopisanje" @@ -3775,7 +3785,7 @@ msgstr "Žadyn kod zapodaty" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3796,7 +3806,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4227,9 +4237,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4336,43 +4349,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije." -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4590,7 +4606,7 @@ msgstr "Pytać" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "" @@ -4723,7 +4739,8 @@ msgstr "" msgid "Before" msgstr "" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4739,17 +4756,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Změny na tutym woknje njejsu dowolene." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4759,151 +4776,192 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Sydło" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Wužiwarska konfiguracija" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Wužiwar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Přistupna konfiguracija" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Konfiguracija posedźenjow" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Sydłowu zdźělenku wobdźěłać" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Konfiguracija wobrazowkowych fotow" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Wopisaj swoju aplikaciju z %d znamješkami" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Wopisaj swoju aplikaciju" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "URL žórła" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "URL žórła" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Přetorhnyć" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Wotwołać" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Awtor" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 13ef76a3ee..0d9bf1bce8 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:53+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:14+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -21,7 +21,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Accesso" @@ -71,7 +71,8 @@ msgstr "Claudite" msgid "Save access settings" msgstr "Salveguardar configurationes de accesso" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -842,7 +843,7 @@ msgstr "Non blocar iste usator" msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blocar iste usator" @@ -991,7 +992,7 @@ msgstr "Non deler iste application" msgid "Delete this application" msgstr "Deler iste application" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1162,6 +1163,7 @@ msgstr "Restaurar apparentias predefinite" msgid "Reset back to default" msgstr "Revenir al predefinitiones" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1169,8 +1171,8 @@ msgstr "Revenir al predefinitiones" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Salveguardar" @@ -1328,9 +1330,9 @@ msgstr "" "Attende confirmation de iste adresse. Verifica tu cassa de entrata (e de " "spam!) pro un message con ulterior instructiones." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancellar" @@ -1649,7 +1651,7 @@ msgstr "Le usator es ja blocate del gruppo." msgid "User is not a member of group." msgstr "Le usator non es membro del gruppo." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Blocar usator del gruppo" @@ -1747,25 +1749,27 @@ msgstr "Un lista de usatores in iste gruppo." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blocar" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Facer le usator administrator del gruppo" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Facer administrator" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Facer iste usator administrator" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Chronologia de %s" @@ -2409,8 +2413,9 @@ msgstr "typo de contento " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -2551,7 +2556,7 @@ msgid "Password saved." msgstr "Contrasigno salveguardate." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Camminos" @@ -2763,8 +2768,9 @@ msgstr "1-64 minusculas o numeros, sin punctuation o spatios" msgid "Full name" msgstr "Nomine complete" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina personal" @@ -3385,7 +3391,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessiones" @@ -3422,21 +3428,25 @@ msgstr "Tu debe aperir un session pro vider un application." msgid "Application profile" msgstr "Profilo del application" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Icone" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Nomine" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organisation" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -4004,7 +4014,7 @@ msgstr "Nulle codice entrate" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Instantaneos" @@ -4025,7 +4035,8 @@ msgid "Invalid snapshot report URL." msgstr "Le URL pro reportar instantaneos es invalide." #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "Aleatorimente durante un accesso web" #: actions/snapshotadminpanel.php:201 @@ -4484,9 +4495,12 @@ msgstr "" "Tenta [cercar gruppos](%%action.groupsearch%%) e facer te membro de illos." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualisationes de %1$s in %2$s!" @@ -4607,27 +4621,28 @@ msgstr "Non poteva inserer message." msgid "Could not update message with new URI." msgstr "Non poteva actualisar message con nove URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Error in base de datos durante insertion del marca (hashtag): %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problema salveguardar nota. Troppo longe." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problema salveguardar nota. Usator incognite." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4635,19 +4650,21 @@ msgstr "" "Troppo de messages duplicate troppo rapidemente; face un pausa e publica de " "novo post alcun minutas." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Il te es prohibite publicar notas in iste sito." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problema salveguardar nota." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4865,7 +4882,7 @@ msgstr "Cercar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Aviso del sito" @@ -4940,9 +4957,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** es un servicio de microblog. " +msgstr "**%%site.name%%** es un servicio de microblog." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5004,7 +5021,8 @@ msgstr "Post" msgid "Before" msgstr "Ante" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Expectava le elemento-radice de un syndication, ma recipeva un documento XML " @@ -5022,17 +5040,17 @@ msgstr "Non pote ancora tractar contento XML incastrate." msgid "Can't handle embedded Base64 content yet." msgstr "Non pote ancora tractar contento Base64 incastrate." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Tu non pote facer modificationes in iste sito." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Le modification de iste pannello non es permittite." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() non implementate." @@ -5042,157 +5060,198 @@ msgstr "showForm() non implementate." msgid "saveSettings() not implemented." msgstr "saveSettings() non implementate." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Impossibile deler configuration de apparentia." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Configuration basic del sito" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Configuration del apparentia" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Apparentia" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Configuration del usator" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Usator" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Configuration del accesso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Configuration del camminos" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Configuration del sessiones" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Modificar aviso del sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Configuration del instantaneos" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Le ressource de API require accesso pro lectura e scriptura, ma tu ha " "solmente accesso pro lectura." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"Tentativa de authentication al API fallite, pseudonymo = %1$s, proxy = %2$s, " -"IP = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Modificar application" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Icone pro iste application" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Describe tu application in %d characteres" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Describe tu application" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "URL de origine" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL del pagina initial de iste application" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "URL de origine" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organisation responsabile de iste application" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL del pagina initial del organisation" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL verso le qual rediriger post authentication" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Navigator" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Scriptorio" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Typo de application, navigator o scriptorio" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Lectura solmente" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Lectura e scriptura" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinite pro iste application: lectura solmente, o lectura e " "scriptura" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancellar" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Lectura e scriptura" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Lectura solmente" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Annexos" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Autor" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Providitor" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 0446bffe47..135a7d2b7a 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-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:56+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:20+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "Samþykkja" @@ -79,7 +79,8 @@ msgstr "" msgid "Save access settings" msgstr "Stillingar fyrir mynd" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -847,7 +848,7 @@ msgstr "Opna á þennan notanda" msgid "Yes" msgstr "Já" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -1001,7 +1002,7 @@ msgstr "Gat ekki uppfært hóp." msgid "Delete this application" msgstr "Eyða þessu babli" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1176,6 +1177,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1183,8 +1185,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Vista" @@ -1355,9 +1357,9 @@ msgstr "" "Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og " "ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Hætta við" @@ -1683,7 +1685,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "" @@ -1775,25 +1777,27 @@ msgstr "Listi yfir notendur í þessum hóp." msgid "Admin" msgstr "Stjórnandi" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Loka" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Rás %s" @@ -2432,8 +2436,9 @@ msgstr "" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -2581,7 +2586,7 @@ msgid "Password saved." msgstr "Lykilorð vistað." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2802,8 +2807,9 @@ msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil" msgid "Full name" msgstr "Fullt nafn" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimasíða" @@ -3418,7 +3424,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3458,23 +3464,27 @@ msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." msgid "Application profile" msgstr "Babl hefur enga persónulega síðu" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "Stuttnefni" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Uppröðun" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Lýsing" @@ -4017,7 +4027,7 @@ msgstr "Enginn lykill sleginn inn" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -4039,7 +4049,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4502,9 +4512,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" @@ -4617,46 +4630,49 @@ msgstr "Gat ekki skeytt skilaboðum inn í." msgid "Could not update message with new URI." msgstr "Gat ekki uppfært skilaboð með nýju veffangi." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Gat ekki vistað babl. Óþekktur notandi." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 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:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4899,7 +4915,7 @@ msgstr "Leita" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Babl vefsíðunnar" @@ -4974,7 +4990,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er örbloggsþjónusta." @@ -5038,7 +5054,8 @@ msgstr "Eftir" msgid "Before" msgstr "Áður" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5054,19 +5071,19 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Þú getur ekki sent þessum notanda skilaboð." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Nýskráning ekki leyfð." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." @@ -5078,166 +5095,206 @@ msgstr "Skipun hefur ekki verið fullbúin" msgid "saveSettings() not implemented." msgstr "Skipun hefur ekki verið fullbúin" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "Staðfesting tölvupóstfangs" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Bjóða" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "SMS staðfesting" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Persónulegt" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "SMS staðfesting" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Notandi" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "SMS staðfesting" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "SMS staðfesting" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "SMS staðfesting" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Babl vefsíðunnar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "SMS staðfesting" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Frumþula" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Frumþula" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Hætta við" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Fjarlægja" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 50a0a7114e..93795b7bd9 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:13:59+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:26+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Accesso" @@ -74,7 +74,8 @@ msgstr "Chiuso" msgid "Save access settings" msgstr "Salva impostazioni di accesso" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Salva" @@ -843,7 +844,7 @@ msgstr "Non bloccare questo utente" msgid "Yes" msgstr "Sì" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blocca questo utente" @@ -991,7 +992,7 @@ msgstr "Non eliminare l'applicazione" msgid "Delete this application" msgstr "Elimina l'applicazione" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1162,6 +1163,7 @@ msgstr "Ripristina i valori predefiniti" msgid "Reset back to default" msgstr "Reimposta i valori predefiniti" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1169,8 +1171,8 @@ msgstr "Reimposta i valori predefiniti" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Salva" @@ -1329,9 +1331,9 @@ msgstr "" "posta (e anche la posta indesiderata!) per un messaggio con ulteriori " "istruzioni." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Annulla" @@ -1653,7 +1655,7 @@ msgstr "L'utente è già bloccato dal gruppo." msgid "User is not a member of group." msgstr "L'utente non fa parte del gruppo." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Blocca l'utente dal gruppo" @@ -1751,25 +1753,27 @@ msgstr "Un elenco degli utenti in questo gruppo." msgid "Admin" msgstr "Amministra" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blocca" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Rende l'utente amministratore del gruppo" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Rendi amm." -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Attività di %s" @@ -2407,8 +2411,9 @@ msgstr "tipo di contenuto " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -2550,7 +2555,7 @@ msgid "Password saved." msgstr "Password salvata." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Percorsi" @@ -2763,8 +2768,9 @@ msgstr "" msgid "Full name" msgstr "Nome" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina web" @@ -3385,7 +3391,7 @@ msgstr "L'utente è già nella \"sandbox\"." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessioni" @@ -3422,21 +3428,25 @@ msgstr "Devi eseguire l'accesso per visualizzare un'applicazione." msgid "Application profile" msgstr "Profilo applicazione" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Icona" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Nome" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organizzazione" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Descrizione" @@ -4001,7 +4011,7 @@ msgstr "Nessun codice inserito" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Snapshot" @@ -4022,7 +4032,8 @@ msgid "Invalid snapshot report URL." msgstr "URL di segnalazione snapshot non valido." #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "A caso quando avviene un web hit" #: actions/snapshotadminpanel.php:201 @@ -4482,9 +4493,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Prova a [cercare dei gruppi](%%action.groupsearch%%) e iscriviti." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Messaggi da %1$s su %2$s!" @@ -4607,27 +4621,28 @@ msgstr "Impossibile inserire il messaggio." msgid "Could not update message with new URI." msgstr "Impossibile aggiornare il messaggio con il nuovo URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Errore del DB nell'inserire un hashtag: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problema nel salvare il messaggio. Troppo lungo." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problema nel salvare il messaggio. Utente sconosciuto." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4635,19 +4650,21 @@ msgstr "" "Troppi messaggi duplicati troppo velocemente; fai una pausa e scrivi di " "nuovo tra qualche minuto." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4865,7 +4882,7 @@ msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Messaggio del sito" @@ -4940,9 +4957,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** è un servizio di microblog. " +msgstr "**%%site.name%%** è un servizio di microblog." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5006,7 +5023,8 @@ msgstr "Successivi" msgid "Before" msgstr "Precedenti" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "Atteso un elemento root del feed, ma ricevuto un documento XML intero." @@ -5022,17 +5040,17 @@ msgstr "Impossibile gestire contenuti XML incorporati." msgid "Can't handle embedded Base64 content yet." msgstr "Impossibile gestire contenuti Base64." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Non puoi apportare modifiche al sito." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Le modifiche al pannello non sono consentite." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() non implementata." @@ -5042,156 +5060,197 @@ msgstr "showForm() non implementata." msgid "saveSettings() not implemented." msgstr "saveSettings() non implementata." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Impossibile eliminare le impostazioni dell'aspetto." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Configurazione di base" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Configurazione aspetto" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Aspetto" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Configurazione utente" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Utente" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Configurazione di accesso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Configurazione percorsi" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Configurazione sessioni" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Modifica messaggio del sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Configurazione snapshot" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Le risorse API richiedono accesso lettura-scrittura, ma si dispone del solo " "accesso in lettura." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"Tentativo di autorizzazione API non riuscito, soprannome = %1$s, proxy = %2" -"$s, IP = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Modifica applicazione" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Icona per questa applicazione" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Descrivi l'applicazione in %d caratteri" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Descrivi l'applicazione" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "URL sorgente" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL della pagina web di questa applicazione" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "URL sorgente" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organizzazione responsabile per questa applicazione" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL della pagina web dell'organizzazione" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL verso cui redirigere dopo l'autenticazione" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Browser" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Desktop" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Tipo di applicazione, browser o desktop" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Sola lettura" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Lettura-scrittura" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Annulla" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Lettura-scrittura" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Sola lettura" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Allegati" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Autore" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Provider" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index a6fe537553..91d52c69e4 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:02+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:33+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "アクセス" @@ -74,7 +74,8 @@ msgstr "閉じられた" msgid "Save access settings" msgstr "アクセス設定の保存" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -838,7 +839,7 @@ msgstr "このユーザをアンブロックする" msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "このユーザをブロックする" @@ -987,7 +988,7 @@ msgstr "このアプリケーションを削除しないでください" msgid "Delete this application" msgstr "このアプリケーションを削除" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1158,6 +1159,7 @@ msgstr "デフォルトデザインに戻す。" msgid "Reset back to default" msgstr "デフォルトへリセットする" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1165,8 +1167,8 @@ msgstr "デフォルトへリセットする" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1324,9 +1326,9 @@ msgstr "" "このアドレスは承認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" "かれたメッセージが届いていないか確認してください。" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "中止" @@ -1652,7 +1654,7 @@ msgstr "ユーザはすでにグループからブロックされています。 msgid "User is not a member of group." msgstr "ユーザはグループのメンバーではありません。" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "グループからユーザをブロック" @@ -1749,25 +1751,27 @@ msgstr "このグループのユーザのリスト。" msgid "Admin" msgstr "管理者" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "ブロック" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "ユーザをグループの管理者にする" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "管理者にする" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "このユーザを管理者にする" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s のタイムライン" @@ -2405,8 +2409,9 @@ msgstr "内容種別 " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" @@ -2548,7 +2553,7 @@ msgid "Password saved." msgstr "パスワードが保存されました。" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "パス" @@ -2759,8 +2764,9 @@ msgstr "1-64文字の、小文字アルファベットか数字で、スペー msgid "Full name" msgstr "フルネーム" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "ホームページ" @@ -3381,7 +3387,7 @@ msgstr "ユーザはすでにサンドボックスです。" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "セッション" @@ -3418,21 +3424,25 @@ msgstr "!!アプリケーションを見るためにはログインしていな msgid "Application profile" msgstr "アプリケーションプロファイル" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "アイコン" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "名前" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "組織" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "概要" @@ -4008,7 +4018,7 @@ msgstr "コードが入力されていません" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "スナップショット" @@ -4030,7 +4040,7 @@ msgid "Invalid snapshot report URL." msgstr "不正なスナップショットレポートURL。" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4491,9 +4501,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[グループを探して](%%action.groupsearch%%)それに加入してください。" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%1$s から %2$s 上の更新をしました!" @@ -4608,26 +4621,27 @@ msgstr "メッセージを追加できません。" msgid "Could not update message with new URI." msgstr "新しいURIでメッセージをアップデートできませんでした。" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "ハッシュタグ追加 DB エラー: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "つぶやきを保存する際に問題が発生しました。長すぎです。" -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザです。" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "多すぎるつぶやきが速すぎます; 数分間の休みを取ってから再投稿してください。" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4635,19 +4649,21 @@ msgstr "" "多すぎる重複メッセージが速すぎます; 数分間休みを取ってから再度投稿してくださ" "い。" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "つぶやきを保存する際に問題が発生しました。" -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4885,7 +4901,7 @@ msgstr "検索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "サイトつぶやき" @@ -4960,9 +4976,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** はマイクロブログサービスです。 " +msgstr "**%%site.name%%** はマイクロブログサービスです。" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5023,7 +5039,8 @@ msgstr "<<後" msgid "Before" msgstr "前>>" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5039,17 +5056,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "あなたはこのサイトへの変更を行うことができません。" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "そのパネルへの変更は許可されていません。" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() は実装されていません。" @@ -5059,159 +5076,202 @@ msgstr "showForm() は実装されていません。" msgid "saveSettings() not implemented." msgstr "saveSettings() は実装されていません。" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "デザイン設定を削除できません。" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "基本サイト設定" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "サイト" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "デザイン設定" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "デザイン" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "ユーザ設定" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "ユーザ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "アクセス設定" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "パス設定" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "セッション設定" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "サイトつぶやき" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "パス設定" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "APIリソースは読み書きアクセスが必要です、しかしあなたは読みアクセスしか持って" "いません。" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "アプリケーション編集" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "このアプリケーションのアイコン" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "あなたのアプリケーションを %d 字以内記述" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "あなたのアプリケーションを記述" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "ソース URL" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "このアプリケーションのホームページの URL" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "ソース URL" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "このアプリケーションに責任がある組織" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "組織のホームページのURL" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "認証の後にリダイレクトするURL" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "ブラウザ" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "デスクトップ" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "アプリケーション、ブラウザ、またはデスクトップのタイプ" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "リードオンリー" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "リードライト" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "このアプリケーションのためのデフォルトアクセス: リードオンリー、またはリード" "ライト" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "中止" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "リードライト" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "リードオンリー" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "取消し" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "添付" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "作者" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "プロバイダ" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index d3cd1bd673..fe03c831a9 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:05+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:38+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -21,7 +21,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "접근" @@ -71,7 +71,8 @@ msgstr "폐쇄" msgid "Save access settings" msgstr "접근 설정을 저장" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "저장" @@ -828,7 +829,7 @@ msgstr "이용자를 차단하지 않는다." msgid "Yes" msgstr "네, 맞습니다." -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -982,7 +983,7 @@ msgstr "이 통지를 지울 수 없습니다." msgid "Delete this application" msgstr "이 게시글 삭제하기" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1157,6 +1158,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1164,8 +1166,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "저장" @@ -1332,9 +1334,9 @@ msgstr "" "이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 " "주시기 바랍니다." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "취소" @@ -1661,7 +1663,7 @@ msgstr "회원이 당신을 차단해왔습니다." msgid "User is not a member of group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "사용자를 차단합니다." @@ -1759,27 +1761,29 @@ msgstr "이 그룹의 회원리스트" msgid "Admin" msgstr "관리자" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "차단하기" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 #, fuzzy msgid "Make user an admin of the group" msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 #, fuzzy msgid "Make Admin" msgstr "관리자" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "이 이용자를 관리자로 만듦" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s 타임라인" @@ -2404,8 +2408,9 @@ msgstr "연결" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." @@ -2552,7 +2557,7 @@ msgid "Password saved." msgstr "비밀 번호 저장" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2774,8 +2779,9 @@ msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백 msgid "Full name" msgstr "실명" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "홈페이지" @@ -3384,7 +3390,7 @@ msgstr "회원이 당신을 차단해왔습니다." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3424,23 +3430,27 @@ msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." msgid "Application profile" msgstr "통지에 프로필이 없습니다." -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "별명" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "페이지수" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "설명" @@ -3993,7 +4003,7 @@ msgstr "코드가 입력 되지 않았습니다." #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -4015,7 +4025,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4475,9 +4485,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -4588,28 +4601,29 @@ msgstr "메시지를 삽입할 수 없습니다." msgid "Could not update message with new URI." msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "게시글 저장문제. 알려지지않은 회원" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:259 +#: classes/Notice.php:260 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4618,20 +4632,22 @@ msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4871,7 +4887,7 @@ msgstr "검색" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "사이트 공지" @@ -4947,7 +4963,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." @@ -5011,7 +5027,8 @@ msgstr "뒷 페이지" msgid "Before" msgstr "앞 페이지" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5027,19 +5044,19 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "가입이 허용되지 않습니다." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." @@ -5051,167 +5068,207 @@ msgstr "명령이 아직 실행되지 않았습니다." msgid "saveSettings() not implemented." msgstr "명령이 아직 실행되지 않았습니다." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 #, fuzzy msgid "Unable to delete design setting." msgstr "트위터 환경설정을 저장할 수 없습니다." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "이메일 주소 확인서" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "초대" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "SMS 인증" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "개인적인" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "SMS 인증" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "이용자" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "SMS 인증" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "SMS 인증" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "SMS 인증" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "사이트 공지" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "SMS 인증" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "140글자로 그룹이나 토픽 설명하기" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "140글자로 그룹이나 토픽 설명하기" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "소스 코드" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "소스 코드" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "취소" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "삭제" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "프로필" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 2fa296c93f..016d96c0e5 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:09+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:46+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Пристап" @@ -74,7 +74,8 @@ msgstr "Затворен" msgid "Save access settings" msgstr "Зачувај нагодувања на пристап" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -843,7 +844,7 @@ msgstr "Не го блокирај корисников" msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Блокирај го корисников" @@ -992,7 +993,7 @@ msgstr "Не го бриши овој програм" msgid "Delete this application" msgstr "Избриши го програмов" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1163,6 +1164,7 @@ msgstr "Врати основно-зададени нагодувања" msgid "Reset back to default" msgstr "Врати по основно" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1170,8 +1172,8 @@ msgstr "Врати по основно" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Зачувај" @@ -1329,9 +1331,9 @@ msgstr "" "Очекувам потврда за оваа адреса. Проверете си го приемното сандаче (а и " "сандачето за спам!). Во писмото ќе следат понатамошни напатствија." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Откажи" @@ -1652,7 +1654,7 @@ msgstr "Корисникот е веќе блокиран од оваа груп msgid "User is not a member of group." msgstr "Корисникот не членува во групата." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Блокирај корисник од група" @@ -1752,25 +1754,27 @@ msgstr "Листа на корисниците на овааг група." msgid "Admin" msgstr "Администратор" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Блокирај" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Направи го корисникот администратор на групата" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Направи го/ја администратор" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Направи го корисникот администратор" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Историја на %s" @@ -2411,8 +2415,9 @@ msgstr "Содржините од типот %s не се поддржани." msgid "Only %s URLs over plain HTTP please." msgstr "Ве молиме користете само %s URL-адреси врз прост HTTP-код." -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -2554,7 +2559,7 @@ msgid "Password saved." msgstr "Лозинката е зачувана." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Патеки" @@ -2766,8 +2771,9 @@ msgstr "1-64 мали букви или бројки. Без интерпукц msgid "Full name" msgstr "Цело име" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Домашна страница" @@ -3143,7 +3149,6 @@ msgid "Invalid username or password." msgstr "Погрешно име или лозинка." #: actions/register.php:343 -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " @@ -3393,7 +3398,7 @@ msgstr "Корисникот е веќе во песочен режим." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Сесии" @@ -3430,21 +3435,25 @@ msgstr "Мора да сте најавени за да можете да го msgid "Application profile" msgstr "Профил на програмот" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Икона" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Име" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Организација" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Опис" @@ -4015,7 +4024,7 @@ msgstr "Нема внесено код" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Снимки" @@ -4036,7 +4045,8 @@ msgid "Invalid snapshot report URL." msgstr "Неважечки URL за извештај од снимката." #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "По случајност во текот на посета" #: actions/snapshotadminpanel.php:201 @@ -4495,9 +4505,12 @@ msgstr "" "се." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Подновувања од %1$s на %2$s!" @@ -4619,27 +4632,28 @@ msgstr "Не можев да ја испратам пораката." msgid "Could not update message with new URI." msgstr "Не можев да ја подновам пораката со нов URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознака: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Проблем со зачувувањето на белешката. Премногу долго." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Проблем со зачувувањето на белешката. Непознат корисник." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Премногу забелњшки за прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4647,19 +4661,21 @@ msgstr "" "Премногу дуплирани пораки во прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Забрането Ви е да објавувате забелешки на оваа веб-страница." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4878,7 +4894,7 @@ msgstr "Барај" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Напомена за веб-страницата" @@ -4943,17 +4959,17 @@ msgstr "Лиценца на програмот StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" -"**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** е услуга за микроблогирање обозможена од [%%site.broughtby%" +"%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е сервис за микроблогирање." @@ -5020,7 +5036,8 @@ msgstr "По" msgid "Before" msgstr "Пред" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "Се очекува коренски каналски елемент, но добив цел XML документ." @@ -5036,17 +5053,17 @@ msgstr "Сè уште не е поддржана обработката на XML msgid "Can't handle embedded Base64 content yet." msgstr "Сè уште не е достапна обработката на вметната Base64 содржина." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Не можете да ја менувате оваа веб-страница." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Менувањето на тој алатник не е дозволено." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не е имплементирано." @@ -5056,154 +5073,197 @@ msgstr "showForm() не е имплементирано." msgid "saveSettings() not implemented." msgstr "saveSettings() не е имплементирано." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Не можам да ги избришам нагодувањата за изглед." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Основни нагодувања на веб-страницата" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Веб-страница" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Конфигурација на изгледот" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Изглед" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Конфигурација на корисник" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Корисник" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Конфигурација на пристапот" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Конфигурација на патеки" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Конфигурација на сесиите" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Уреди објава за веб-страницата" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Поставки за снимки" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-ресурсот бара да може и да чита и да запишува, а вие можете само да " "читате." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "Неуспешен обид за API-заверка, прекар = %1$s, прокси = %2$s, IP = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Уреди програм" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Икона за овој програм" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Опишете го програмот со %d знаци" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Опишете го Вашиот програм" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "Изворна URL-адреса" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL на страницата на програмот" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "Изворна URL-адреса" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Организацијата одговорна за овој програм" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL на страницата на организацијата" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL за пренасочување по заверката" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Прелистувач" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Работна површина" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Тип на програм, прелистувач или работна површина" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Само читање" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Читање-пишување" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Основно-зададен пристап за овој програм: само читање, или читање-пишување" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Откажи" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Читање-пишување" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Само читање" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Одземи" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Прилози" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Автор" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Обезбедувач" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 02360d3abe..149c103e42 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:12+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:52+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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Tilgang" @@ -72,7 +72,8 @@ msgstr "Lukket" msgid "Save access settings" msgstr "Lagre tilgangsinnstillinger" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Lagre" @@ -834,7 +835,7 @@ msgstr "Ikke blokker denne brukeren" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blokker denne brukeren" @@ -983,7 +984,7 @@ msgstr "Ikke slett dette programmet" msgid "Delete this application" msgstr "Slett dette programmet" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1153,6 +1154,7 @@ msgstr "" msgid "Reset back to default" msgstr "Tilbakestill til standardverdier" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1160,8 +1162,8 @@ msgstr "Tilbakestill til standardverdier" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Lagre" @@ -1319,9 +1321,9 @@ msgstr "" "Venter på bekreftelse av adressen. Sjekk innboksen din (og søppelboksen) for " "melding med videre veiledning." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Avbryt" @@ -1639,7 +1641,7 @@ msgstr "Bruker er allerede blokkert fra gruppe." msgid "User is not a member of group." msgstr "Bruker er ikke et medlem av gruppa." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Blokker bruker fra gruppe" @@ -1731,25 +1733,27 @@ msgstr "En liste over brukerne i denne gruppen." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Gjør brukeren til en administrator for gruppen" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Gjør til administrator" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Gjør denne brukeren til administrator" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidslinje" @@ -2360,8 +2364,9 @@ msgstr "innholdstype " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Ikke et støttet dataformat." @@ -2504,7 +2509,7 @@ msgid "Password saved." msgstr "Passordet ble lagret" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2714,8 +2719,9 @@ msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom" msgid "Full name" msgstr "Fullt navn" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hjemmesiden" @@ -3315,7 +3321,7 @@ msgstr "Du er allerede logget inn!" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3353,21 +3359,25 @@ msgstr "" msgid "Application profile" msgstr "" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Ikon" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Navn" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organisasjon" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrivelse" @@ -3919,7 +3929,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3940,7 +3950,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4377,9 +4387,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Prøv å [søke etter grupper](%%action.groupsearch%%) og bli med i dem." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar fra %1$s på %2$s!" @@ -4492,43 +4505,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problem ved lagring av notis. For lang." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problem ved lagring av notis. Ukjent bruker." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problem ved lagring av notis." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problem ved lagring av gruppeinnboks." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4751,7 +4767,7 @@ msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "" @@ -4826,9 +4842,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " +msgstr "**%%site.name%%** er en mikrobloggingtjeneste." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -4886,7 +4902,8 @@ msgstr "Etter" msgid "Before" msgstr "Før" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4902,17 +4919,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Du kan ikke gjøre endringer på dette nettstedet." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() ikke implementert." @@ -4922,154 +4939,197 @@ msgstr "showForm() ikke implementert." msgid "saveSettings() not implemented." msgstr "saveSettings() ikke implementert." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Nettsted" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Personlig" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Brukerkonfigurasjon" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Bruker" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Tilgangskonfigurasjon" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Stikonfigurasjon" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Rediger nettstedsnotis" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Rediger program" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Ikon for dette programmet" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Beskriv programmet ditt med %d tegn" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Beskriv programmet ditt" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "Nettadresse til kilde" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "Nettadresse til hjemmesiden for dette programmet" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "Nettadresse til kilde" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL til organisasjonens hjemmeside" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Nettleser" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Skrivebord" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Type program, nettleser eller skrivebord" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Skrivebeskyttet" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Les og skriv" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardtilgang for dette programmet: skrivebeskyttet eller lese- og " "skrivetilgang" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Avbryt" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Les og skriv" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Skrivebeskyttet" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Tilbakekall" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Vedlegg" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Forfatter" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Leverandør" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index bbc8a9c860..f1842a8746 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:18+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:01+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Toegang" @@ -73,7 +73,8 @@ msgstr "Gesloten" msgid "Save access settings" msgstr "Toegangsinstellingen opslaan" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -852,7 +853,7 @@ msgstr "Gebruiker niet blokkeren" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Deze gebruiker blokkeren" @@ -1001,7 +1002,7 @@ msgstr "Deze applicatie niet verwijderen" msgid "Delete this application" msgstr "Deze applicatie verwijderen" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1173,6 +1174,7 @@ msgstr "Standaardontwerp toepassen" msgid "Reset back to default" msgstr "Standaardinstellingen toepassen" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1180,8 +1182,8 @@ msgstr "Standaardinstellingen toepassen" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Opslaan" @@ -1339,9 +1341,9 @@ msgstr "" "Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox (en uw " "ongewenste berichten/spam) voor een bericht met nadere instructies." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Annuleren" @@ -1666,7 +1668,7 @@ msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." msgid "User is not a member of group." msgstr "De gebruiker is geen lid van de groep." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Gebruiker toegang tot de groep blokkeren" @@ -1766,25 +1768,27 @@ msgstr "Ledenlijst van deze groep" msgid "Admin" msgstr "Beheerder" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blokkeren" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Deze gebruiker groepsbeheerder maken" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Beheerder maken" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Deze gebruiker beheerder maken" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tijdlijn" @@ -2432,8 +2436,9 @@ msgstr "Inhoudstype %s wordt niet ondersteund." msgid "Only %s URLs over plain HTTP please." msgstr "Alleen URL's voor %s via normale HTTP alstublieft." -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -2573,7 +2578,7 @@ msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Paden" @@ -2785,8 +2790,9 @@ msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" msgid "Full name" msgstr "Volledige naam" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Thuispagina" @@ -3168,7 +3174,6 @@ msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." #: actions/register.php:343 -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " @@ -3417,7 +3422,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessies" @@ -3454,21 +3459,25 @@ msgstr "U moet aangemeld zijn om een applicatie te kunnen bekijken." msgid "Application profile" msgstr "Applicatieprofiel" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Icoon" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Naam" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organisatie" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Beschrijving" @@ -4043,7 +4052,7 @@ msgstr "Er is geen code ingevoerd" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Snapshots" @@ -4064,7 +4073,8 @@ msgid "Invalid snapshot report URL." msgstr "De rapportage-URL voor snapshots is ongeldig." #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "Willekeurig tijdens een websitehit" #: actions/snapshotadminpanel.php:201 @@ -4528,9 +4538,12 @@ msgstr "" "U kunt [naar groepen zoeken](%%action.groupsearch%%) en daar lid van worden." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates van %1$s op %2$s." @@ -4653,31 +4666,32 @@ msgstr "Het was niet mogelijk het bericht in te voegen." msgid "Could not update message with new URI." msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 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:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "" "Er was een probleem bij het opslaan van de mededeling. De gebruiker is " "onbekend." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4685,22 +4699,24 @@ msgstr "" "Te veel duplicaatberichten te snel achter elkaar. Neem een adempauze en " "plaats over een aantal minuten pas weer een bericht." -#: classes/Notice.php:265 +#: classes/Notice.php:266 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:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " "groep." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4919,7 +4935,7 @@ msgstr "Zoeken" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Mededeling van de website" @@ -4984,19 +5000,19 @@ msgstr "Licentie van de StatusNet-software" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." -"broughtbyurl%%). " +"broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** is een microblogdienst. " +msgstr "**%%site.name%%** is een microblogdienst." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5062,7 +5078,8 @@ msgstr "Later" msgid "Before" msgstr "Eerder" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "Verwachtte een root-feed element maar kreeg een heel XML-document." @@ -5078,17 +5095,17 @@ msgstr "Het is nog niet mogelijk ingebedde XML-inhoud te verwerken" msgid "Can't handle embedded Base64 content yet." msgstr "Het is nog niet mogelijk ingebedde Base64-inhoud te verwerken" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "U mag geen wijzigingen maken aan deze website." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Wijzigingen aan dat venster zijn niet toegestaan." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() is niet geïmplementeerd." @@ -5098,155 +5115,197 @@ msgstr "showForm() is niet geïmplementeerd." msgid "saveSettings() not implemented." msgstr "saveSettings() is nog niet geïmplementeerd." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Basisinstellingen voor de website" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Website" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Instellingen vormgeving" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Uiterlijk" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Gebruikersinstellingen" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Gebruiker" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Toegangsinstellingen" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Padinstellingen" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Sessieinstellingen" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Websitebrede mededeling opslaan" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Snapshotinstellingen" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen " "maar leestoegang." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"De API-authenticatie is mislukt. nickname = %1$s, proxy - %2$s, ip = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Applicatie bewerken" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Icoon voor deze applicatie" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Beschrijf uw applicatie in %d tekens" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Beschrijf uw applicatie" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "Bron-URL" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "De URL van de homepage van deze applicatie" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "Bron-URL" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organisatie verantwoordelijk voor deze applicatie" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "De URL van de homepage van de organisatie" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL om naar door te verwijzen na authenticatie" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Browser" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Desktop" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Type applicatie; browser of desktop" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Alleen-lezen" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Lezen en schrijven" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Annuleren" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Lezen en schrijven" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Alleen-lezen" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Intrekken" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Bijlagen" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Auteur" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Provider" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index eb13488c7c..bf802b96f7 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:15+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:36:57+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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -21,7 +21,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "Godta" @@ -78,7 +78,8 @@ msgstr "Blokkér" msgid "Save access settings" msgstr "Avatar-innstillingar" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -851,7 +852,7 @@ msgstr "Lås opp brukaren" msgid "Yes" msgstr "Jau" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -1007,7 +1008,7 @@ msgstr "Kan ikkje sletta notisen." msgid "Delete this application" msgstr "Slett denne notisen" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1190,6 +1191,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1197,8 +1199,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Lagra" @@ -1370,9 +1372,9 @@ msgstr "" "Ventar på godkjenning. Sjekk innboksen (og søppelpostboksen) for ei melding " "med instruksjonar." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Avbryt" @@ -1703,7 +1705,7 @@ msgstr "Brukar har blokkert deg." msgid "User is not a member of group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "Blokker brukaren" @@ -1803,27 +1805,29 @@ msgstr "Ei liste over brukarane i denne gruppa." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 #, fuzzy msgid "Make user an admin of the group" msgstr "Du må være administrator for å redigere gruppa" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 #, fuzzy msgid "Make Admin" msgstr "Administrator" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidsline" @@ -2455,8 +2459,9 @@ msgstr "Kopla til" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -2603,7 +2608,7 @@ msgid "Password saved." msgstr "Lagra passord." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2825,8 +2830,9 @@ msgstr "" msgid "Full name" msgstr "Fullt namn" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimeside" @@ -3445,7 +3451,7 @@ msgstr "Brukar har blokkert deg." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3485,23 +3491,27 @@ msgstr "Du må være innlogga for å melde deg ut av ei gruppe." msgid "Application profile" msgstr "Notisen har ingen profil" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "Kallenamn" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Paginering" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Beskriving" @@ -4053,7 +4063,7 @@ msgstr "Ingen innskriven kode" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -4075,7 +4085,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4540,9 +4550,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -4655,27 +4668,28 @@ msgstr "Kunne ikkje lagre melding." msgid "Could not update message with new URI." msgstr "Kunne ikkje oppdatere melding med ny URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Feil ved lagring av notis. Ukjend brukar." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4683,20 +4697,22 @@ msgid "" msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4938,7 +4954,7 @@ msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Statusmelding" @@ -5014,9 +5030,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** er ei mikrobloggingteneste. " +msgstr "**%%site.name%%** er ei mikrobloggingteneste." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5078,7 +5094,8 @@ msgstr "« Etter" msgid "Before" msgstr "Før »" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5094,19 +5111,19 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Du kan ikkje sende melding til denne brukaren." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Registrering ikkje tillatt." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." @@ -5118,167 +5135,207 @@ msgstr "Kommando ikkje implementert." msgid "saveSettings() not implemented." msgstr "Kommando ikkje implementert." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 #, fuzzy msgid "Unable to delete design setting." msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "Stadfesting av epostadresse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Invitér" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Personleg" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Brukar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Statusmelding" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "SMS bekreftelse" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Beskriv gruppa eller emnet med 140 teikn" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Beskriv gruppa eller emnet med 140 teikn" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Kjeldekode" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Kjeldekode" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Avbryt" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Fjern" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "Profil" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index ddc506b3be..380bb740fe 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:21+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:04+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,14 +20,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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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 #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Dostęp" @@ -77,7 +77,8 @@ msgstr "Zamknięte" msgid "Save access settings" msgstr "Zapisz ustawienia dostępu" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" @@ -839,7 +840,7 @@ msgstr "Nie blokuj tego użytkownika" msgid "Yes" msgstr "Tak" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokuj tego użytkownika" @@ -987,7 +988,7 @@ msgstr "Nie usuwaj tej aplikacji" msgid "Delete this application" msgstr "Usuń tę aplikację" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1156,6 +1157,7 @@ msgstr "Przywróć domyślny wygląd" msgid "Reset back to default" msgstr "Przywróć domyślne ustawienia" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1163,8 +1165,8 @@ msgstr "Przywróć domyślne ustawienia" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Zapisz" @@ -1323,9 +1325,9 @@ msgstr "" "(także w wiadomościach niechcianych), czy otrzymałeś wiadomość z dalszymi " "instrukcjami." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Anuluj" @@ -1643,7 +1645,7 @@ msgstr "Użytkownik został już zablokował w grupie." msgid "User is not a member of group." msgstr "Użytkownik nie jest członkiem grupy." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Zablokuj użytkownika w grupie" @@ -1737,25 +1739,27 @@ msgstr "Lista użytkowników znajdujących się w tej grupie." msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Zablokuj" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Uczyń administratorem" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Oś czasu użytkownika %s" @@ -2391,8 +2395,9 @@ msgstr "Typ zawartości %s jest nieobsługiwany." msgid "Only %s URLs over plain HTTP please." msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP." -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." @@ -2532,7 +2537,7 @@ msgid "Password saved." msgstr "Zapisano hasło." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Ścieżki" @@ -2744,8 +2749,9 @@ msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych" msgid "Full name" msgstr "Imię i nazwisko" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Strona domowa" @@ -3119,7 +3125,6 @@ msgid "Invalid username or password." msgstr "Nieprawidłowa nazwa użytkownika lub hasło." #: actions/register.php:343 -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " @@ -3367,7 +3372,7 @@ msgstr "Użytkownik jest już ograniczony." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sesje" @@ -3404,21 +3409,25 @@ msgstr "Musisz być zalogowany, aby wyświetlić aplikację." msgid "Application profile" msgstr "Profil aplikacji" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Ikona" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Nazwa" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organizacja" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Opis" @@ -3985,7 +3994,7 @@ msgstr "Nie podano kodu" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Migawki" @@ -4006,7 +4015,8 @@ msgid "Invalid snapshot report URL." msgstr "Nieprawidłowy adres URL zgłaszania migawek." #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "Losowo podczas trafienia WWW" #: actions/snapshotadminpanel.php:201 @@ -4463,9 +4473,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualizacje z %1$s na %2$s." @@ -4591,27 +4604,28 @@ msgstr "Nie można wprowadzić wiadomości." msgid "Could not update message with new URI." msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problem podczas zapisywania wpisu. Za długi." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4619,19 +4633,21 @@ 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:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4849,7 +4865,7 @@ msgstr "Wyszukaj" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Wpis witryny" @@ -4914,19 +4930,19 @@ msgstr "Licencja oprogramowania StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +"broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** jest usługą mikroblogowania. " +msgstr "**%%site.name%%** jest usługą mikroblogowania." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -4993,7 +5009,8 @@ msgstr "Później" msgid "Before" msgstr "Wcześniej" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "Oczekiwano elementu kanału roota, ale otrzymano cały dokument XML." @@ -5009,17 +5026,17 @@ msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści XML." msgid "Can't handle embedded Base64 content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści Base64." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Nie można wprowadzić zmian witryny." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Zmiany w tym panelu nie są dozwolone." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() nie jest zaimplementowane." @@ -5029,156 +5046,197 @@ msgstr "showForm() nie jest zaimplementowane." msgid "saveSettings() not implemented." msgstr "saveSettings() nie jest zaimplementowane." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Nie można usunąć ustawienia wyglądu." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Podstawowa konfiguracja witryny" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Witryna" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Konfiguracja wyglądu" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Wygląd" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Konfiguracja użytkownika" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Użytkownik" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Konfiguracja dostępu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Konfiguracja ścieżek" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Konfiguracja sesji" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Zmodyfikuj wpis witryny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Konfiguracja migawek" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Zasób API wymaga dostępu do zapisu i do odczytu, ale powiadasz dostęp tylko " "do odczytu." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"Próba uwierzytelnienia API nie powiodła się, pseudonim = %1$s, pośrednik = %2" -"$s, IP = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Zmodyfikuj aplikację" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Ikona tej aplikacji" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Opisz aplikację w %d znakach" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Opisz aplikację" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "Źródłowy adres URL" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "Adres URL strony domowej tej aplikacji" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "Źródłowy adres URL" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organizacja odpowiedzialna za tę aplikację" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "Adres URL strony domowej organizacji" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "Adres URL do przekierowania po uwierzytelnieniu" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Przeglądarka" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Pulpit" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Typ aplikacji, przeglądarka lub pulpit" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Tylko do odczytu" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Odczyt i zapis" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Anuluj" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Odczyt i zapis" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Tylko do odczytu" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Unieważnij" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Załączniki" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Autor" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Dostawca" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 28ce889834..c0220c82b0 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:24+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:07+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Acesso" @@ -76,7 +76,8 @@ msgstr "Fechado" msgid "Save access settings" msgstr "Gravar configurações do site" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -842,7 +843,7 @@ msgstr "Não bloquear este utilizador" msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -998,7 +999,7 @@ msgstr "Não apagar esta nota" msgid "Delete this application" msgstr "Apagar esta nota" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1169,6 +1170,7 @@ msgstr "Repor estilos predefinidos" msgid "Reset back to default" msgstr "Repor predefinição" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1176,8 +1178,8 @@ msgstr "Repor predefinição" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Gravar" @@ -1347,9 +1349,9 @@ msgstr "" "A aguardar a confirmação deste endereço. Procure na sua caixa de entrada (ou " "na caixa de spam!) uma mensagem com mais instruções." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -1675,7 +1677,7 @@ msgstr "Acesso do utilizador ao grupo já foi bloqueado." msgid "User is not a member of group." msgstr "Utilizador não é membro do grupo." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Bloquear acesso do utilizador ao grupo" @@ -1773,25 +1775,27 @@ msgstr "Uma lista dos utilizadores neste grupo." msgid "Admin" msgstr "Gestor" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Tornar utilizador o gestor do grupo" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Tornar Gestor" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Notas de %s" @@ -2437,8 +2441,9 @@ msgstr "tipo de conteúdo " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -2585,7 +2590,7 @@ msgid "Password saved." msgstr "Senha gravada." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Localizações" @@ -2797,8 +2802,9 @@ msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" msgid "Full name" msgstr "Nome completo" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página pessoal" @@ -3424,7 +3430,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessões" @@ -3464,22 +3470,26 @@ msgstr "Precisa de iniciar uma sessão para deixar um grupo." msgid "Application profile" msgstr "Nota não tem perfil" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Nome" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Paginação" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" @@ -4052,7 +4062,7 @@ msgstr "Nenhum código introduzido" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Instantâneos" @@ -4074,7 +4084,8 @@ msgid "Invalid snapshot report URL." msgstr "URL para onde enviar instantâneos é inválida" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "Aleatoriamente, durante o acesso pela internet" #: actions/snapshotadminpanel.php:201 @@ -4536,9 +4547,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Tente [pesquisar grupos](%%action.groupsearch%%) e juntar-se a eles." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizações de %1#s a %2$s!" @@ -4663,27 +4677,28 @@ msgstr "Não foi possível inserir a mensagem." msgid "Could not update message with new URI." msgstr "Não foi possível actualizar a mensagem com a nova URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Erro na base de dados ao inserir a marca: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problema na gravação da nota. Demasiado longa." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problema na gravação da nota. Utilizador desconhecido." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4691,20 +4706,22 @@ msgstr "" "Demasiadas mensagens duplicadas, demasiado rápido; descanse e volte a " "publicar daqui a alguns minutos." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Está proibido de publicar notas neste site." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problema na gravação da nota." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema na gravação da nota." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4942,7 +4959,7 @@ msgstr "Pesquisa" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Aviso do site" @@ -5017,9 +5034,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** é um serviço de microblogues. " +msgstr "**%%site.name%%** é um serviço de microblogues." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5080,7 +5097,8 @@ msgstr "Posteriores" msgid "Before" msgstr "Anteriores" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5096,17 +5114,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Não pode fazer alterações a este site." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() não implementado." @@ -5116,163 +5134,203 @@ msgstr "showForm() não implementado." msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 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:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Configuração básica do site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Configuração do estilo" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Estilo" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "Configuração das localizações" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Utilizador" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "Configuração do estilo" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Configuração das localizações" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "Configuração do estilo" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Aviso do site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Configuração das localizações" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Descreva o grupo ou o assunto em %d caracteres" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Descreva o grupo ou assunto" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Código" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "URL da página ou do blogue, deste grupo ou assunto" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Código" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "URL da página ou do blogue, deste grupo ou assunto" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancelar" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Remover" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Anexos" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Autor" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Fornecedor" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 490f175be7..68752209f9 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:28+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:10+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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -25,7 +25,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Acesso" @@ -75,7 +75,8 @@ msgstr "Fechado" msgid "Save access settings" msgstr "Salvar as configurações de acesso" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Salvar" @@ -849,7 +850,7 @@ msgstr "Não bloquear este usuário" msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuário" @@ -998,7 +999,7 @@ msgstr "Não excluir esta aplicação" msgid "Delete this application" msgstr "Excluir esta aplicação" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1169,6 +1170,7 @@ msgstr "Restaura a aparência padrão" msgid "Reset back to default" msgstr "Restaura de volta ao padrão" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1176,8 +1178,8 @@ msgstr "Restaura de volta ao padrão" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Salvar" @@ -1335,9 +1337,9 @@ msgstr "" "Aguardando a confirmação deste endereço. Procure em sua caixa de entrada (e " "de spam!) por uma mensagem com mais instruções." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -1661,7 +1663,7 @@ msgstr "O usuário já está bloqueado no grupo." msgid "User is not a member of group." msgstr "O usuário não é um membro do grupo" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Bloquear o usuário no grupo" @@ -1760,25 +1762,27 @@ msgstr "Uma lista dos usuários deste grupo." msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Tornar o usuário um administrador do grupo" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Tornar administrador" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Torna este usuário um administrador" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" @@ -2425,8 +2429,9 @@ msgstr "tipo de conteúdo " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -2568,7 +2573,7 @@ msgid "Password saved." msgstr "A senha foi salva." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Caminhos" @@ -2780,8 +2785,9 @@ msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços" msgid "Full name" msgstr "Nome completo" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site" @@ -3407,7 +3413,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessões" @@ -3444,21 +3450,25 @@ msgstr "Você deve estar autenticado para visualizar uma aplicação." msgid "Application profile" msgstr "Perfil da aplicação" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Ícone" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Nome" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organização" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" @@ -4026,7 +4036,7 @@ 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 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Estatísticas" @@ -4047,7 +4057,8 @@ 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" +#, fuzzy +msgid "Randomly during web hit" msgstr "Aleatoriamente durante o funcionamento" #: actions/snapshotadminpanel.php:201 @@ -4508,9 +4519,12 @@ msgstr "" "eles." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Mensagens de %1$s no %2$s!" @@ -4631,27 +4645,28 @@ msgstr "Não foi possível inserir a mensagem." msgid "Could not update message with new URI." msgstr "Não foi possível atualizar a mensagem com a nova URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Erro no banco de dados durante a inserção da hashtag: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problema no salvamento da mensagem. Ela é muito extensa." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problema no salvamento da mensagem. Usuário desconhecido." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4659,19 +4674,21 @@ msgstr "" "Muitas mensagens duplicadas em um período curto de tempo; dê uma respirada e " "publique novamente daqui a alguns minutos." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Você está proibido de publicar mensagens neste site." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4889,7 +4906,7 @@ msgstr "Pesquisar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Mensagem do site" @@ -4964,9 +4981,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** é um serviço de microblog. " +msgstr "**%%site.name%%** é um serviço de microblog." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5029,7 +5046,8 @@ msgstr "Próximo" msgid "Before" msgstr "Anterior" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Era esperado um elemento raiz da fonte, mas foi obtido o documento XML " @@ -5047,17 +5065,17 @@ msgstr "Ainda não é possível manipular conteúdo XML incorporado." msgid "Can't handle embedded Base64 content yet." msgstr "Ainda não é possível manipular conteúdo Base64." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Você não pode fazer alterações neste site." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() não implementado." @@ -5067,156 +5085,197 @@ msgstr "showForm() não implementado." msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 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:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Configuração básica do site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Configuração da aparência" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Aparência" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Configuração do usuário" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuário" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Configuração do acesso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Configuração dos caminhos" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Configuração das sessões" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Editar os avisos do site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Configurações das estatísticas" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Os recursos de API exigem acesso de leitura e escrita, mas você possui " "somente acesso de leitura." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"A tentativa de autenticação na API falhou, identificação = %1$s, proxy = %2" -"$s, ip = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Editar a aplicação" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Ícone para esta aplicação" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Descreva a sua aplicação em %d caracteres" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Descreva sua aplicação" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "URL da fonte" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL do site desta aplicação" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "URL da fonte" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organização responsável por esta aplicação" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL para o site da organização" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL para o redirecionamento após a autenticação" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Navegador" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Desktop" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicação: navegador ou desktop" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Somente leitura" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Leitura e escrita" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acesso padrão para esta aplicação: somente leitura ou leitura e escrita" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancelar" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Leitura e escrita" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Somente leitura" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Anexos" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Autor" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Operadora" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 622c8352ae..8fe51a80c6 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-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:31+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:16+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -26,7 +26,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Принять" @@ -77,7 +77,8 @@ msgstr "Закрыта" msgid "Save access settings" msgstr "Сохранить настройки доступа" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -844,7 +845,7 @@ msgstr "Не блокировать этого пользователя" msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Заблокировать пользователя." @@ -993,7 +994,7 @@ msgstr "Не удаляйте это приложение" msgid "Delete this application" msgstr "Удалить это приложение" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1164,6 +1165,7 @@ msgstr "Восстановить оформление по умолчанию" msgid "Reset back to default" msgstr "Восстановить значения по умолчанию" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1171,8 +1173,8 @@ msgstr "Восстановить значения по умолчанию" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Сохранить" @@ -1330,9 +1332,9 @@ msgstr "" "Ожидание подтверждения этого адреса. Проверьте свой почтовый ящик (и папку " "для спама!), там будут дальнейшие инструкции." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Отменить" @@ -1660,7 +1662,7 @@ msgstr "Пользователь уже заблокирован из групп msgid "User is not a member of group." msgstr "Пользователь не является членом этой группы." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Заблокировать пользователя из группы." @@ -1758,25 +1760,27 @@ msgstr "Список пользователей, являющихся члена msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Блокировать" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Сделать пользователя администратором группы" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Сделать администратором" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Сделать этого пользователя администратором" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Лента %s" @@ -2412,8 +2416,9 @@ msgstr "Тип содержимого %s не поддерживается." msgid "Only %s URLs over plain HTTP please." msgstr "Только %s URL в простом HTTP, пожалуйста." -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." @@ -2555,7 +2560,7 @@ msgid "Password saved." msgstr "Пароль сохранён." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Пути" @@ -2764,8 +2769,9 @@ msgstr "1-64 латинских строчных буквы или цифры, msgid "Full name" msgstr "Полное имя" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Главная" @@ -3138,15 +3144,13 @@ msgid "Invalid username or password." msgstr "Неверное имя или пароль." #: actions/register.php:343 -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" -"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " -"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " -"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" -"action.openidlogin%%)!)" +"С помощью этой формы вы можете создать новую учётную запись. Тогда вы " +"получите возможность публиковать короткие сообщения и устанавливать связи с " +"друзьями и коллегами. " #: actions/register.php:425 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." @@ -3386,7 +3390,7 @@ msgstr "Пользователь уже в режиме песочницы." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Сессии" @@ -3423,21 +3427,25 @@ msgstr "Вы должны авторизоваться, чтобы просма msgid "Application profile" msgstr "Профиль приложения" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Иконка" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Имя" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Организация" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Описание" @@ -4007,7 +4015,7 @@ msgstr "Код не введён" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Снимки" @@ -4028,7 +4036,8 @@ msgid "Invalid snapshot report URL." msgstr "Неверный URL отчёта снимка." #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "При случайном посещении" #: actions/snapshotadminpanel.php:201 @@ -4487,9 +4496,12 @@ msgstr "" "Попробуйте [найти группы](%%action.groupsearch%%) и присоединиться к ним." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" @@ -4610,27 +4622,28 @@ msgstr "Не удаётся вставить сообщение." msgid "Could not update message with new URI." msgstr "Не удаётся обновить сообщение с новым URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Ошибка баз данных при вставке хеш-тегов для %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Проблемы с сохранением записи. Слишком длинно." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Проблема при сохранении записи. Неизвестный пользователь." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Слишком много записей за столь короткий срок; передохните немного и " "попробуйте вновь через пару минут." -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4638,19 +4651,21 @@ msgstr "" "Слишком много одинаковых записей за столь короткий срок; передохните немного " "и попробуйте вновь через пару минут." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поститься на этом сайте (бан)" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4868,7 +4883,7 @@ msgstr "Поиск" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Новая запись" @@ -4933,19 +4948,19 @@ msgstr "StatusNet лицензия" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" -"**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" -"%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** — это служба микроблогинга, организованная [%%site." +"broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** — сервис микроблогинга. " +msgstr "**%%site.name%%** — сервис микроблогинга." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5010,7 +5025,8 @@ msgstr "Сюда" msgid "Before" msgstr "Туда" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "Ожидался корневой элемент потока, а получен XML-документ целиком." @@ -5026,17 +5042,17 @@ msgstr "Пока ещё нельзя обрабатывать встроенны msgid "Can't handle embedded Base64 content yet." msgstr "Пока ещё нельзя обрабатывать встроенное содержание Base64." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Вы не можете изменять этот сайт." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Изменения для этой панели недопустимы." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не реализована." @@ -5046,156 +5062,197 @@ msgstr "showForm() не реализована." msgid "saveSettings() not implemented." msgstr "saveSettings() не реализована." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Не удаётся удалить настройки оформления." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Основная конфигурация сайта" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Конфигурация оформления" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Оформление" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Конфигурация пользователя" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Пользователь" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Конфигурация доступа" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Конфигурация путей" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Конфигурация сессий" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Изменить уведомление сайта" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Конфигурация снимков" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API ресурса требует доступ для чтения и записи, но у вас есть только доступ " "для чтения." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"Неудачная попытка авторизации через API, nickname = %1$s, proxy = %2$s, ip = " -"%3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Изменить приложение" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Иконка для этого приложения" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Опишите ваше приложение при помощи %d символов" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Опишите ваше приложение" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "URL источника" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL-адрес домашней страницы этого приложения" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "URL источника" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Организация, ответственная за это приложение" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL-адрес домашней страницы организации" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL для перенаправления после проверки подлинности" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Браузер" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Операционная система" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Среда выполнения приложения: браузер или операционная система" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Только чтение" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Чтение и запись" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Доступ по умолчанию для этого приложения: только чтение или чтение и запись" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Отменить" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Чтение и запись" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Только чтение" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Отозвать" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Вложения" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Автор" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Сервис" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 923d50e40a..61d593bcf6 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,7 +19,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "" @@ -69,7 +69,8 @@ msgstr "" msgid "Save access settings" msgstr "" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -809,7 +810,7 @@ msgstr "" msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "" @@ -955,7 +956,7 @@ msgstr "" msgid "Delete this application" msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1120,6 +1121,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1127,8 +1129,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1284,9 +1286,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "" @@ -1595,7 +1597,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "" @@ -1686,25 +1688,27 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2271,8 +2275,9 @@ msgstr "" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2412,7 +2417,7 @@ msgid "Password saved." msgstr "" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2617,8 +2622,9 @@ msgstr "" msgid "Full name" msgstr "" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "" @@ -3185,7 +3191,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3222,21 +3228,25 @@ msgstr "" msgid "Application profile" msgstr "" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "" @@ -3758,7 +3768,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3779,7 +3789,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4209,9 +4219,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4318,43 +4331,46 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 #, php-format -msgid "DB error inserting hashtag: %s" +msgid "Database error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4572,7 +4588,7 @@ msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "" @@ -4705,7 +4721,8 @@ msgstr "" msgid "Before" msgstr "" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4721,17 +4738,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4741,151 +4758,190 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +msgctxt "BUTTON" +msgid "Cancel" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +msgctxt "BUTTON" msgid "Revoke" msgstr "" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index aeb3782a22..be55652d38 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:34+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:19+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Åtkomst" @@ -73,7 +73,8 @@ msgstr "Stängd" msgid "Save access settings" msgstr "Spara inställningar för åtkomst" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -830,7 +831,7 @@ msgstr "Blockera inte denna användare" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blockera denna användare" @@ -980,7 +981,7 @@ msgstr "Ta inte bort denna applikation" msgid "Delete this application" msgstr "Ta bort denna applikation" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1151,6 +1152,7 @@ msgstr "Återställ standardutseende" msgid "Reset back to default" msgstr "Återställ till standardvärde" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1158,8 +1160,8 @@ msgstr "Återställ till standardvärde" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Spara" @@ -1317,9 +1319,9 @@ msgstr "" "Väntar bekräftelse av denna adress. Kontrollera din inkorg (och " "skräppostkorg!) efter ett meddelande med vidare instruktioner." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Avbryt" @@ -1638,7 +1640,7 @@ msgstr "Användaren är redan blockerad från grupp." msgid "User is not a member of group." msgstr "Användare är inte en gruppmedlem." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Blockera användare från grupp" @@ -1735,25 +1737,27 @@ msgstr "En lista av användarna i denna grupp." msgid "Admin" msgstr "Administratör" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Blockera" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Gör användare till en administratör för gruppen" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Gör till administratör" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Gör denna användare till administratör" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidslinje" @@ -2390,8 +2394,9 @@ msgstr "Innehållstyp %s stödjs inte." msgid "Only %s URLs over plain HTTP please." msgstr "Endast %s-webbadresser över vanlig HTTP." -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -2531,7 +2536,7 @@ msgid "Password saved." msgstr "Lösenord sparat." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Sökvägar" @@ -2741,8 +2746,9 @@ msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" msgid "Full name" msgstr "Fullständigt namn" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hemsida" @@ -3117,7 +3123,6 @@ msgid "Invalid username or password." msgstr "Ogiltigt användarnamn eller lösenord." #: actions/register.php:343 -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " @@ -3368,7 +3373,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Sessioner" @@ -3405,21 +3410,25 @@ msgstr "Du måste vara inloggad för att se en applikation." msgid "Application profile" msgstr "Applikationsprofil" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Ikon" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Namn" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Organisation" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrivning" @@ -3982,7 +3991,7 @@ msgstr "Ingen kod ifylld" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Ögonblicksbilder" @@ -4003,7 +4012,8 @@ msgid "Invalid snapshot report URL." msgstr "Ogiltig rapport-URL för ögonblicksbild" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "Slumpmässigt vid webbförfrågningar" #: actions/snapshotadminpanel.php:201 @@ -4463,9 +4473,12 @@ msgstr "" "Prova att [söka efter grupper](%%action.groupsearch%%) och gå med i dem." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" @@ -4586,27 +4599,28 @@ msgstr "Kunde inte infoga meddelande." msgid "Could not update message with new URI." msgstr "Kunde inte uppdatera meddelande med ny URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Databasfel vid infogning av hashtag: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Problem vid sparande av notis. För långt." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Problem vid sparande av notis. Okänd användare." -#: classes/Notice.php:253 +#: classes/Notice.php:254 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:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4614,19 +4628,21 @@ msgstr "" "För många duplicerade meddelanden för snabbt; ta en vilopaus och posta igen " "om ett par minuter." -#: classes/Notice.php:265 +#: classes/Notice.php:266 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:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Problem med att spara notis." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4844,7 +4860,7 @@ msgstr "Sök" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Webbplatsnotis" @@ -4909,19 +4925,19 @@ msgstr "Programvarulicens för StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** är en mikrobloggtjänst tillhandahållen av [%%site.broughtby" -"%%](%%site.broughtbyurl%%). " +"%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** är en mikrobloggtjänst. " +msgstr "**%%site.name%%** är en mikrobloggtjänst." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -4983,7 +4999,8 @@ msgstr "Senare" msgid "Before" msgstr "Tidigare" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "Förväntade ett flödes rotelement, men fick ett helt XML-dokument." @@ -4999,17 +5016,17 @@ msgstr "Kan inte hantera inbäddat XML-innehåll ännu." msgid "Can't handle embedded Base64 content yet." msgstr "Kan inte hantera inbäddat Base64-innehåll ännu." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Du kan inte göra förändringar av denna webbplats." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Ändringar av den panelen tillåts inte." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() är inte implementerat." @@ -5019,155 +5036,196 @@ msgstr "showForm() är inte implementerat." msgid "saveSettings() not implemented." msgstr "saveSetting() är inte implementerat." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Kunde inte ta bort utseendeinställning." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Grundläggande webbplatskonfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Webbplats" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Konfiguration av utseende" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Utseende" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Konfiguration av användare" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Användare" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Konfiguration av åtkomst" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Konfiguration av sökvägar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Konfiguration av sessioner" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Redigera webbplatsnotis" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Konfiguration av ögonblicksbilder" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"Misslyckat försök till API-autentisering, smeknamn =%1$s, proxy =%2$s, ip =%3" -"$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Redigera applikation" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Ikon för denna applikation" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Beskriv din applikation med högst %d tecken" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Beskriv din applikation" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "URL för källa" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL till hemsidan för denna applikation" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "URL för källa" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Organisation som ansvarar för denna applikation" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL till organisationens hemsidan" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL att omdirigera till efter autentisering" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Webbläsare" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Skrivbord" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Typ av applikation, webbläsare eller skrivbord" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Skrivskyddad" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Läs och skriv" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Avbryt" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Läs och skriv" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Skrivskyddad" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Återkalla" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Bilagor" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Författare" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Tillhandahållare" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 186c5ad152..1934cb51ad 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:37+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:22+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "అందుబాటు" @@ -72,7 +72,8 @@ msgstr "మూసివేయబడింది" msgid "Save access settings" msgstr "అందుబాటు అమరికలను భద్రపరచు" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" @@ -826,7 +827,7 @@ msgstr "ఈ వాడుకరిని నిరోధించకు" msgid "Yes" msgstr "అవును" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -976,7 +977,7 @@ msgstr "ఈ ఉపకరణాన్ని తొలగించకు" msgid "Delete this application" msgstr "ఈ ఉపకరణాన్ని తొలగించు" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1143,6 +1144,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1150,8 +1152,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "భద్రపరచు" @@ -1311,9 +1313,9 @@ msgstr "" "ఈ చిరునామా నిర్ధారణకై వేచివున్నాం. తదుపరి సూచనలతో ఉన్న సందేశానికై మీ ఇన్‌బాక్స్‌లో (స్పామ్ బాక్సులో కూడా!) " "చూడండి." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "రద్దుచేయి" @@ -1624,7 +1626,7 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున msgid "User is not a member of group." msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" @@ -1719,25 +1721,27 @@ msgstr "ఈ గుంపులో వాడుకరులు జాబితా msgid "Admin" msgstr "నిర్వాహకులు" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "నిరోధించు" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "నిర్వాహకున్ని చేయి" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s కాలరేఖ" @@ -2325,8 +2329,9 @@ msgstr "విషయ రకం " msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2471,7 +2476,7 @@ msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "త్రోవలు" @@ -2687,8 +2692,9 @@ msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అ msgid "Full name" msgstr "పూర్తి పేరు" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "హోమ్ పేజీ" @@ -3287,7 +3293,7 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3326,21 +3332,25 @@ msgstr "గుంపుని వదిలివెళ్ళడానికి msgid "Application profile" msgstr "ఉపకరణ ప్రవర" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "ప్రతీకం" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "పేరు" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "సంస్ధ" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "వివరణ" @@ -3871,7 +3881,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3893,7 +3903,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4334,9 +4344,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[గుంపులని వెతికి](%%action.groupsearch%%) వాటిలో చేరడానికి ప్రయత్నించండి." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4443,46 +4456,49 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:248 +#: classes/Notice.php:249 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4708,7 +4724,7 @@ msgstr "వెతుకు" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "సైటు గమనిక" @@ -4784,7 +4800,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." @@ -4848,7 +4864,8 @@ msgstr "తర్వాత" msgid "Before" msgstr "ఇంతక్రితం" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4864,17 +4881,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "ఈ సైటుకి మీరు మార్పులు చేయలేరు." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4884,159 +4901,201 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "ప్రాథమిక సైటు స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "సైటు" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "రూపకల్పన స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "రూపురేఖలు" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "వాడుకరి స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "వాడుకరి" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "SMS నిర్ధారణ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "SMS నిర్ధారణ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "రూపకల్పన స్వరూపణం" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "సైటు గమనిక" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "SMS నిర్ధారణ" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "ఉపకరణాన్ని మార్చు" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "ఈ ఉపకరణానికి ప్రతీకం" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "మీ ఉపకరణాన్ని వివరించండి" -#: lib/applicationeditform.php:216 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +msgid "URL of the homepage of this application" +msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 #, fuzzy msgid "Source URL" msgstr "మూలము" -#: lib/applicationeditform.php:218 -msgid "URL of the homepage of this application" -msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" - -#: lib/applicationeditform.php:224 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "ఈ ఉపకరణానికి బాధ్యతాయుతమైన సంస్థ" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "విహారిణి" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "మేజోపరి" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "ఉపకరణ రకం, విహారిణి లేదా మేజోపరి" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "చదవడం-మాత్రమే" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "చదవడం-వ్రాయడం" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "రద్దుచేయి" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "చదవడం-వ్రాయడం" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "చదవడం-మాత్రమే" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "తొలగించు" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "జోడింపులు" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "రచయిత" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "ప్రొఫైలు" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 8459be7c11..d52d304de9 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:40+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37: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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -22,7 +22,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "Kabul et" @@ -78,7 +78,8 @@ msgstr "Böyle bir kullanıcı yok." msgid "Save access settings" msgstr "Ayarlar" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -856,7 +857,7 @@ msgstr "Böyle bir kullanıcı yok." msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." @@ -1014,7 +1015,7 @@ msgstr "Böyle bir durum mesajı yok." msgid "Delete this application" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1193,6 +1194,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1200,8 +1202,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Kaydet" @@ -1369,9 +1371,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "İptal et" @@ -1696,7 +1698,7 @@ msgstr "Kullanıcının profili yok." msgid "User is not a member of group." msgstr "Bize o profili yollamadınız" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "Böyle bir kullanıcı yok." @@ -1795,25 +1797,27 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2418,8 +2422,9 @@ msgstr "Bağlan" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2568,7 +2573,7 @@ msgid "Password saved." msgstr "Parola kaydedildi." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2791,8 +2796,9 @@ msgstr "" msgid "Full name" msgstr "Tam İsim" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Başlangıç Sayfası" @@ -3385,7 +3391,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3424,23 +3430,27 @@ msgstr "" msgid "Application profile" msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "Takma ad" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Yer" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Abonelikler" @@ -3980,7 +3990,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -4002,7 +4012,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4458,9 +4468,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4572,46 +4585,49 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "Cevap eklenirken veritabanı hatası: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:248 +#: classes/Notice.php:249 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4851,7 +4867,7 @@ msgstr "Ara" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" @@ -4929,7 +4945,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." @@ -4995,7 +5011,8 @@ msgstr "« Sonra" msgid "Before" msgstr "Önce »" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5011,17 +5028,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -5031,168 +5048,208 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Yeni durum mesajı" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Kişisel" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Yeni durum mesajı" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Eposta adresi onayı" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Kaynak" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Kaynak" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "İptal et" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Kaldır" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "Profil" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 73d5a81f13..6df5416970 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -3,6 +3,7 @@ # Author@translatewiki.net: AS # Author@translatewiki.net: Boogie # Author@translatewiki.net: Prima klasy4na +# Author@translatewiki.net: Тест # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:43+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:29+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -24,7 +25,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 msgid "Access" msgstr "Погодитись" @@ -76,7 +77,8 @@ msgstr "Закрито" msgid "Save access settings" msgstr "Зберегти параметри доступу" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -840,7 +842,7 @@ msgstr "Не блокувати цього користувача" msgid "Yes" msgstr "Так" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Блокувати користувача" @@ -989,7 +991,7 @@ msgstr "Не видаляти додаток" msgid "Delete this application" msgstr "Видалити додаток" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1158,6 +1160,7 @@ msgstr "Оновити налаштування за замовчуванням" msgid "Reset back to default" msgstr "Повернутись до початкових налаштувань" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1165,8 +1168,8 @@ msgstr "Повернутись до початкових налаштувань" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Зберегти" @@ -1324,9 +1327,9 @@ msgstr "" "Очікування підтвердження цієї адреси. Перевірте вхідну пошту (і теку зі " "спамом також!), там має бути повідомлення з подальшими інструкціями." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Скасувати" @@ -1642,7 +1645,7 @@ msgstr "Користувача заблоковано в цій групі." msgid "User is not a member of group." msgstr "Користувач не є учасником групи." -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 msgid "Block user from group" msgstr "Блокувати користувача в групі" @@ -1740,25 +1743,27 @@ msgstr "Список учасників цієї групи." msgid "Admin" msgstr "Адмін" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "Блок" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "Надати користувачеві права адміністратора" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "Зробити адміном" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "Надати цьому користувачеві права адміністратора" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s стрічка" @@ -2399,8 +2404,9 @@ msgstr "Тип змісту %s не підтримується." msgid "Only %s URLs over plain HTTP please." msgstr "URL-адреса %s лише в простому HTTP, будь ласка." -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." @@ -2542,7 +2548,7 @@ msgid "Password saved." msgstr "Пароль збережено." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "Шлях" @@ -2752,8 +2758,9 @@ msgstr "" msgid "Full name" msgstr "Повне ім’я" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Веб-сторінка" @@ -3128,13 +3135,12 @@ msgid "Invalid username or password." msgstr "Недійсне ім’я або пароль." #: actions/register.php:343 -#, fuzzy 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." @@ -3375,7 +3381,7 @@ msgstr "Користувача ізольовано доки наберетьс #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "Сесії" @@ -3412,21 +3418,25 @@ msgstr "Ви повинні спочатку увійти, аби перегля msgid "Application profile" msgstr "Профіль додатку" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "Іконка" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 msgid "Name" msgstr "Ім’я" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 msgid "Organization" msgstr "Організація" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Опис" @@ -3992,7 +4002,7 @@ msgstr "Код не введено" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "Снепшоти" @@ -4013,7 +4023,8 @@ msgid "Invalid snapshot report URL." msgstr "Помилковий снепшот URL." #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +#, fuzzy +msgid "Randomly during web hit" msgstr "Випадково під час веб-хіта" #: actions/snapshotadminpanel.php:201 @@ -4470,9 +4481,12 @@ msgstr "" "Спробуйте [знайти якісь групи](%%action.groupsearch%%) і приєднайтеся до них." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" @@ -4593,27 +4607,28 @@ msgstr "Не можна долучити повідомлення." msgid "Could not update message with new URI." msgstr "Не можна оновити повідомлення з новим URI." -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "Помилка бази даних при додаванні теґу: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 msgid "Problem saving notice. Too long." msgstr "Проблема при збереженні допису. Надто довге." -#: classes/Notice.php:248 +#: classes/Notice.php:249 msgid "Problem saving notice. Unknown user." msgstr "Проблема при збереженні допису. Невідомий користувач." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Дуже багато дописів за короткий термін; ходіть подихайте повітрям і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4621,19 +4636,21 @@ msgstr "" "Дуже багато повідомлень за короткий термін; ходіть подихайте повітрям і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Проблема при збереженні допису." -#: classes/Notice.php:964 +#: classes/Notice.php:965 msgid "Problem saving group inbox." msgstr "Проблема при збереженні вхідних дописів для групи." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4851,7 +4868,7 @@ msgstr "Пошук" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 msgid "Site notice" msgstr "Об’яви на сайті" @@ -4916,19 +4933,19 @@ msgstr "Ліцензія програмного забезпечення StatusN #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** — це сервіс мікроблоґів наданий вам [%%site.broughtby%%](%%" -"site.broughtbyurl%%). " +"site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** — це сервіс мікроблоґів. " +msgstr "**%%site.name%%** — це сервіс мікроблоґів." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -4990,7 +5007,8 @@ msgstr "Вперед" msgid "Before" msgstr "Назад" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "В очікуванні кореневого елементу веб-стрічки, отримали цілий документ XML." @@ -5007,17 +5025,17 @@ msgstr "Поки що не можу обробити вбудований XML к msgid "Can't handle embedded Base64 content yet." msgstr "Поки що не можу обробити вбудований контент Base64." -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "Ви не можете щось змінювати на цьому сайті." -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "Для цієї панелі зміни не припустимі." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не виконано." @@ -5027,155 +5045,197 @@ msgstr "showForm() не виконано." msgid "saveSettings() not implemented." msgstr "saveSettings() не виконано." -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "Немає можливості видалити налаштування дизайну." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 msgid "Basic site configuration" msgstr "Основна конфігурація сайту" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 msgid "Design configuration" msgstr "Конфігурація дизайну" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 msgctxt "MENU" msgid "Design" msgstr "Дизайн" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 msgid "User configuration" msgstr "Конфігурація користувача" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "Користувач" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 msgid "Access configuration" msgstr "Прийняти конфігурацію" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 msgid "Paths configuration" msgstr "Конфігурація шляху" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 msgid "Sessions configuration" msgstr "Конфігурація сесій" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 msgid "Edit site notice" msgstr "Редагувати повідомлення сайту" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 msgid "Snapshots configuration" msgstr "Конфігурація знімків" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для " "читання." -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" -"Невдала спроба авторизації API, nickname = %1$s, proxy = %2$s, ip = %3$s" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "Керувати додатками" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "Іконка для цього додатку" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, php-format msgid "Describe your application in %d characters" msgstr "Опишіть додаток, вкладаючись у %d знаків" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 msgid "Describe your application" msgstr "Опишіть Ваш додаток" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "URL-адреса" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "URL-адреса веб-сторінки цього додатку" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "URL-адреса" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "Організація, відповідальна за цей додаток" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "URL-адреса веб-сторінки організації" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "URL-адреса, на яку перенаправляти після автентифікації" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "Браузер" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "Десктоп" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "Тип додатку, браузер або десктоп" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "Лише читання" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "Читати-писати" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" "Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Скасувати" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +#, fuzzy +msgid "read-write" +msgstr "Читати-писати" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +#, fuzzy +msgid "read-only" +msgstr "Лише читання" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Відкликати" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "Вкладення" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "Автор" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "Провайдер" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 6be6aba161..a36036300b 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:46+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:32+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -20,7 +20,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "Chấp nhận" @@ -77,7 +77,8 @@ msgstr "Ban user" msgid "Save access settings" msgstr "Thay đổi hình đại diện" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -860,7 +861,7 @@ msgstr "Bỏ chặn người dùng này" msgid "Yes" msgstr "Có" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Ban user" @@ -1018,7 +1019,7 @@ msgstr "Không thể xóa tin nhắn này." msgid "Delete this application" msgstr "Xóa tin nhắn" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1204,6 +1205,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1211,8 +1213,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Lưu" @@ -1389,9 +1391,9 @@ msgstr "" "Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến (hoặc thư rác) " "để nhận tin nhắn và lời hướng dẫn." +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "Hủy" @@ -1735,7 +1737,7 @@ msgstr "Người dùng không có thông tin." msgid "User is not a member of group." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "Ban user" @@ -1837,27 +1839,29 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 #, fuzzy msgid "Make user an admin of the group" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 #, fuzzy msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, fuzzy, php-format msgid "%s timeline" msgstr "Dòng tin nhắn của %s" @@ -2506,8 +2510,9 @@ msgstr "Kết nối" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "Không hỗ trợ định dạng dữ liệu này." @@ -2660,7 +2665,7 @@ msgid "Password saved." msgstr "Đã lưu mật khẩu." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2887,8 +2892,9 @@ msgstr "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm msgid "Full name" msgstr "Tên đầy đủ" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "Trang chủ hoặc Blog" @@ -3503,7 +3509,7 @@ 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 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3543,23 +3549,27 @@ msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những msgid "Application profile" msgstr "Tin nhắn không có hồ sơ cá nhân" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "Biệt danh" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "Thư mời đã gửi" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 msgid "Description" msgstr "Mô tả" @@ -4119,7 +4129,7 @@ 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 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -4141,7 +4151,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4607,9 +4617,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4724,46 +4737,49 @@ msgstr "Không thể chèn thêm vào đăng nhận." msgid "Could not update message with new URI." msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." -#: classes/Notice.php:175 +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 #, fuzzy, php-format -msgid "DB error inserting hashtag: %s" +msgid "Database error inserting hashtag: %s" msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:248 +#: classes/Notice.php:249 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%s (%s)" @@ -5006,7 +5022,7 @@ msgstr "Tìm kiếm" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 #, fuzzy msgid "Site notice" msgstr "Thông báo mới" @@ -5085,9 +5101,9 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " +msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #: lib/action.php:824 @@ -5151,7 +5167,8 @@ msgstr "Sau" msgid "Before" msgstr "Trước" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5167,19 +5184,19 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "Bạn đã theo những người này:" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "Biệt hiệu không được cho phép." -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -5189,167 +5206,207 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 #, 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:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "Xac nhan dia chi email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Thư mời" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "Xác nhận SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Cá nhân" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "Xác nhận SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "Xác nhận SMS" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "Xác nhận SMS" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "Xác nhận SMS" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "Thông báo mới" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "Xác nhận SMS" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "Nguồn" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "Nguồn" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Hủy" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "Xóa" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "Hồ sơ " diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 0555f1c20a..0d374039a1 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:49+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:35+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "接受" @@ -80,7 +80,8 @@ msgstr "阻止" msgid "Save access settings" msgstr "头像设置" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -856,7 +857,7 @@ msgstr "取消阻止次用户" msgid "Yes" msgstr "是" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "阻止该用户" @@ -1015,7 +1016,7 @@ msgstr "无法删除通告。" msgid "Delete this application" msgstr "删除通告" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1197,6 +1198,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1204,8 +1206,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1377,9 +1379,9 @@ msgstr "" "等待确认此地址。请查看您的收件箱(和垃圾箱)是否收到了邮件,其中包含了进一步的" "指示。" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "取消" @@ -1714,7 +1716,7 @@ msgstr "用户没有个人信息。" msgid "User is not a member of group." msgstr "您未告知此个人信息" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "阻止用户" @@ -1815,27 +1817,29 @@ msgstr "该组成员列表。" msgid "Admin" msgstr "admin管理员" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "阻止" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 #, fuzzy msgid "Make user an admin of the group" msgstr "只有admin才能编辑这个组" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 #, fuzzy msgid "Make Admin" msgstr "admin管理员" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s 时间表" @@ -2457,8 +2461,9 @@ msgstr "连接" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "不支持的数据格式。" @@ -2608,7 +2613,7 @@ msgid "Password saved." msgstr "密码已保存。" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2829,8 +2834,9 @@ msgstr "1 到 64 个小写字母或数字,不包含标点及空白" msgid "Full name" msgstr "全名" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "主页" @@ -3438,7 +3444,7 @@ msgstr "用户没有个人信息。" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3478,23 +3484,27 @@ msgstr "您必须登录才能邀请其他人使用 %s" msgid "Application profile" msgstr "通告没有关联个人信息" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "昵称" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "分页" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "描述" @@ -4049,7 +4059,7 @@ msgstr "没有输入验证码" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -4071,7 +4081,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4536,9 +4546,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -4651,47 +4664,50 @@ msgstr "无法添加信息。" msgid "Could not update message with new URI." msgstr "无法添加新URI的信息。" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" msgstr "添加标签时数据库出错:%s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "保存通告时出错。" -#: classes/Notice.php:248 +#: classes/Notice.php:249 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "保存通告时出错。" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:259 +#: classes/Notice.php:260 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "保存通告时出错。" -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "保存通告时出错。" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4935,7 +4951,7 @@ msgstr "搜索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 #, fuzzy msgid "Site notice" msgstr "新通告" @@ -5014,7 +5030,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 是一个微博客服务。" @@ -5080,7 +5096,8 @@ msgstr "« 之后" msgid "Before" msgstr "之前 »" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -5096,19 +5113,19 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 #, fuzzy msgid "You cannot make changes to this site." msgstr "无法向此用户发送消息。" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 #, fuzzy msgid "Changes to that panel are not allowed." msgstr "不允许注册。" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." @@ -5120,167 +5137,207 @@ msgstr "命令尚未实现。" msgid "saveSettings() not implemented." msgstr "命令尚未实现。" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 #, fuzzy msgid "Unable to delete design setting." msgstr "无法保存 Twitter 设置!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "电子邮件地址确认" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "邀请" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "SMS短信确认" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "个人" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "SMS短信确认" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "用户" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "SMS短信确认" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "SMS短信确认" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "SMS短信确认" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "新通告" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "SMS短信确认" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "用不超过140个字符描述您自己和您的爱好" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "用不超过140个字符描述您自己和您的爱好" -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "Source URL" -msgstr "来源" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 #, fuzzy msgid "URL of the homepage of this application" msgstr "您的主页、博客或在其他站点的URL" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +#, fuzzy +msgid "Source URL" +msgstr "来源" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 #, fuzzy msgid "URL for the homepage of the organization" msgstr "您的主页、博客或在其他站点的URL" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 #, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "取消" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +#, fuzzy +msgctxt "BUTTON" msgid "Revoke" msgstr "移除" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 #, fuzzy msgid "Provider" msgstr "个人信息" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index ecc43cf05c..d721d59794 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-10 19:12+0000\n" -"PO-Revision-Date: 2010-04-10 19:14:53+0000\n" +"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"PO-Revision-Date: 2010-04-11 18:37:38+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 (r64895); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64941); 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" @@ -20,7 +20,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:375 #, fuzzy msgid "Access" msgstr "接受" @@ -75,7 +75,8 @@ msgstr "無此使用者" msgid "Save access settings" msgstr "線上即時通設定" -#: actions/accessadminpanel.php:203 +#. TRANS: Button label +#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -843,7 +844,7 @@ msgstr "無此使用者" msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:388 lib/blockform.php:80 +#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "無此使用者" @@ -1001,7 +1002,7 @@ msgstr "無此通知" msgid "Delete this application" msgstr "請在140個字以內描述你自己與你的興趣" -#. TRANS: Client error message +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: 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 @@ -1178,6 +1179,7 @@ msgstr "" msgid "Reset back to default" msgstr "" +#. TRANS: Submit button title #: actions/designadminpanel.php:589 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 @@ -1185,8 +1187,8 @@ msgstr "" #: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: lib/applicationeditform.php:363 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1353,9 +1355,9 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Submit button title #: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:331 -#: lib/applicationeditform.php:332 +#: actions/smssettings.php:126 lib/applicationeditform.php:359 msgid "Cancel" msgstr "取消" @@ -1676,7 +1678,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:356 +#: actions/groupblock.php:134 actions/groupmembers.php:360 #, fuzzy msgid "Block user from group" msgstr "無此使用者" @@ -1774,25 +1776,27 @@ msgstr "" msgid "Admin" msgstr "" -#: actions/groupmembers.php:388 lib/blockform.php:69 +#: actions/groupmembers.php:392 lib/blockform.php:69 msgid "Block" msgstr "" -#: actions/groupmembers.php:483 +#: actions/groupmembers.php:487 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:515 +#: actions/groupmembers.php:519 msgid "Make this user an admin" msgstr "" #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#: lib/atomgroupnoticefeed.php:62 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2373,8 +2377,9 @@ msgstr "連結" msgid "Only %s URLs over plain HTTP please." msgstr "" -#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1068 -#: lib/apiaction.php:1096 lib/apiaction.php:1212 +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 +#: lib/apiaction.php:1098 lib/apiaction.php:1215 msgid "Not a supported data format." msgstr "" @@ -2521,7 +2526,7 @@ msgid "Password saved." msgstr "" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:383 msgid "Paths" msgstr "" @@ -2734,8 +2739,9 @@ msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" msgid "Full name" msgstr "全名" +#. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:453 -#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +#: lib/applicationeditform.php:244 lib/groupeditform.php:161 msgid "Homepage" msgstr "個人首頁" @@ -3315,7 +3321,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:391 msgid "Sessions" msgstr "" @@ -3353,23 +3359,27 @@ msgstr "" msgid "Application profile" msgstr "" -#: actions/showapplication.php:159 lib/applicationeditform.php:180 +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:182 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:195 -#: lib/applicationeditform.php:195 +#: lib/applicationeditform.php:199 #, fuzzy msgid "Name" msgstr "暱稱" -#: actions/showapplication.php:178 lib/applicationeditform.php:222 +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:235 #, fuzzy msgid "Organization" msgstr "地點" +#. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:198 -#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +#: lib/applicationeditform.php:216 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "所有訂閱" @@ -3907,7 +3917,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:407 msgid "Snapshots" msgstr "" @@ -3929,7 +3939,7 @@ msgid "Invalid snapshot report URL." msgstr "" #: actions/snapshotadminpanel.php:200 -msgid "Randomly during Web hit" +msgid "Randomly during web hit" msgstr "" #: actions/snapshotadminpanel.php:201 @@ -4374,9 +4384,12 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:67 -#: lib/atomusernoticefeed.php:73 +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:69 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4488,46 +4501,49 @@ msgstr "" msgid "Could not update message with new URI." msgstr "" -#: classes/Notice.php:175 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:176 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "增加回覆時,資料庫發生錯誤: %s" -#: classes/Notice.php:244 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Too long." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:248 +#: classes/Notice.php:249 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:253 +#: classes/Notice.php:254 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:259 +#: classes/Notice.php:260 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:265 +#: classes/Notice.php:266 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:331 classes/Notice.php:357 +#: classes/Notice.php:332 classes/Notice.php:358 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:964 +#: classes/Notice.php:965 #, fuzzy msgid "Problem saving group inbox." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:1510 +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1513 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4765,7 +4781,7 @@ msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:515 lib/adminpanelaction.php:398 +#: lib/action.php:515 lib/adminpanelaction.php:399 #, fuzzy msgid "Site notice" msgstr "新訊息" @@ -4842,7 +4858,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 -#, fuzzy, php-format +#, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%**是個微型部落格" @@ -4904,7 +4920,8 @@ msgstr "" msgid "Before" msgstr "之前的內容»" -#: lib/activity.php:120 +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:121 msgid "Expecting a root feed element but got a whole XML document." msgstr "" @@ -4920,17 +4937,17 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:98 msgid "You cannot make changes to this site." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:110 msgid "Changes to that panel are not allowed." msgstr "" -#. TRANS: Client error message +#. TRANS: Client error message. #: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" @@ -4940,162 +4957,202 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message -#: lib/adminpanelaction.php:283 +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:284 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:348 +#: lib/adminpanelaction.php:349 #, fuzzy msgid "Basic site configuration" msgstr "確認信箱" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:351 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "新訊息" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:356 +#: lib/adminpanelaction.php:357 #, fuzzy msgid "Design configuration" msgstr "確認信箱" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:359 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "地點" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:364 +#: lib/adminpanelaction.php:365 #, fuzzy msgid "User configuration" msgstr "確認信箱" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:367 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:372 +#: lib/adminpanelaction.php:373 #, fuzzy msgid "Access configuration" msgstr "確認信箱" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:380 +#: lib/adminpanelaction.php:381 #, fuzzy msgid "Paths configuration" msgstr "確認信箱" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:388 +#: lib/adminpanelaction.php:389 #, fuzzy msgid "Sessions configuration" msgstr "確認信箱" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:396 +#: lib/adminpanelaction.php:397 #, fuzzy msgid "Edit site notice" msgstr "新訊息" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:404 +#: lib/adminpanelaction.php:405 #, fuzzy msgid "Snapshots configuration" msgstr "確認信箱" -#: lib/apiauth.php:94 +#. TRANS: Client error 401. +#: lib/apiauth.php:95 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#: lib/apiauth.php:276 -#, php-format -msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" -msgstr "" - -#: lib/applicationeditform.php:136 +#. TRANS: Form legend. +#: lib/applicationeditform.php:137 msgid "Edit application" msgstr "" -#: lib/applicationeditform.php:184 +#. TRANS: Form guide. +#: lib/applicationeditform.php:187 msgid "Icon for this application" msgstr "" -#: lib/applicationeditform.php:204 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:209 #, fuzzy, php-format msgid "Describe your application in %d characters" msgstr "請在140個字以內描述你自己與你的興趣" -#: lib/applicationeditform.php:207 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:213 #, fuzzy msgid "Describe your application" msgstr "請在140個字以內描述你自己與你的興趣" -#: lib/applicationeditform.php:216 -msgid "Source URL" -msgstr "" - -#: lib/applicationeditform.php:218 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 msgid "URL of the homepage of this application" msgstr "" -#: lib/applicationeditform.php:224 +#. TRANS: Form input field label. +#: lib/applicationeditform.php:226 +msgid "Source URL" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" -#: lib/applicationeditform.php:230 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL for the homepage of the organization" msgstr "" -#: lib/applicationeditform.php:236 +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" -#: lib/applicationeditform.php:258 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:278 msgid "Browser" msgstr "" -#: lib/applicationeditform.php:274 +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:295 msgid "Desktop" msgstr "" -#: lib/applicationeditform.php:275 +#. TRANS: Form guide. +#: lib/applicationeditform.php:297 msgid "Type of application, browser or desktop" msgstr "" -#: lib/applicationeditform.php:297 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:320 msgid "Read-only" msgstr "" -#: lib/applicationeditform.php:315 +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:339 msgid "Read-write" msgstr "" -#: lib/applicationeditform.php:316 +#. TRANS: Form guide. +#: lib/applicationeditform.php:341 msgid "Default access for this application: read-only, or read-write" msgstr "" -#: lib/applicationlist.php:154 +#. TRANS: Button label +#: lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "取消" + +#. TRANS: Application access type +#: lib/applicationlist.php:136 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:138 +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:144 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:159 +msgctxt "BUTTON" msgid "Revoke" msgstr "" -#: lib/attachmentlist.php:87 +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 msgid "Attachments" msgstr "" -#: lib/attachmentlist.php:263 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentlist.php:276 +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 msgid "Provider" msgstr "" From 69eebc1ec83ae81ddd1c172a3948ec47661cd364 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 21:04:07 +0200 Subject: [PATCH 62/80] Add translator documentation for uses of 'Yes' and 'No' in the interface. --- actions/block.php | 16 ++++++++++++++-- actions/deleteapplication.php | 10 +++++++--- actions/deletenotice.php | 16 ++++++++++++++-- actions/deleteuser.php | 16 ++++++++++++++-- actions/groupblock.php | 16 ++++++++++++++-- 5 files changed, 63 insertions(+), 11 deletions(-) diff --git a/actions/block.php b/actions/block.php index 7f609c253b..11565e20c5 100644 --- a/actions/block.php +++ b/actions/block.php @@ -140,8 +140,20 @@ class BlockAction extends ProfileFormAction $this->hidden($k, $v); } } - $this->submit('form_action-no', _('No'), 'submit form_action-primary', 'no', _("Do not block this user")); - $this->submit('form_action-yes', _('Yes'), 'submit form_action-secondary', 'yes', _('Block this user')); + $this->submit('form_action-no', + // TRANS: Button label on the user block form. + _m('BUTTON','No'), + 'submit form_action-primary', + 'no', + // TRANS: Submit button title for 'No' when blocking a user. + _('Do not block this user')); + $this->submit('form_action-yes', + // TRANS: Button label on the user block form. + _m('BUTTON','Yes'), + 'submit form_action-secondary', + 'yes', + // TRANS: Submit button title for 'Yes' when blocking a user. + _('Block this user')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/deleteapplication.php b/actions/deleteapplication.php index 17526e1118..806de0be6e 100644 --- a/actions/deleteapplication.php +++ b/actions/deleteapplication.php @@ -150,13 +150,17 @@ class DeleteapplicationAction extends Action 'This will clear all data about the application from the '. 'database, including all existing user connections.')); $this->submit('form_action-no', - _('No'), + // TRANS: Button label on the delete application form. + _m('BUTTON','No'), 'submit form_action-primary', 'no', - _("Do not delete this application")); + // TRANS: Submit button title for 'No' when deleting an application. + _('Do not delete this application')); $this->submit('form_action-yes', - _('Yes'), + // TRANS: Button label on the delete application form. + _m('BUTTON','Yes'), 'submit form_action-secondary', + // TRANS: Submit button title for 'Yes' when deleting an application. 'yes', _('Delete this application')); $this->elementEnd('fieldset'); $this->elementEnd('form'); diff --git a/actions/deletenotice.php b/actions/deletenotice.php index 69cb1ebe87..f8010a814a 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -142,8 +142,20 @@ class DeletenoticeAction extends Action $this->hidden('token', common_session_token()); $this->hidden('notice', $this->trimmed('notice')); $this->element('p', null, _('Are you sure you want to delete this notice?')); - $this->submit('form_action-no', _('No'), 'submit form_action-primary', 'no', _("Do not delete this notice")); - $this->submit('form_action-yes', _('Yes'), 'submit form_action-secondary', 'yes', _('Delete this notice')); + $this->submit('form_action-no', + // TRANS: Button label on the delete notice form. + _m('BUTTON','No'), + 'submit form_action-primary', + 'no', + // TRANS: Submit button title for 'No' when deleting a notice. + _("Do not delete this notice")); + $this->submit('form_action-yes', + // TRANS: Button label on the delete notice form. + _m('BUTTON','Yes'), + 'submit form_action-secondary', + 'yes', + // TRANS: Submit button title for 'Yes' when deleting a notice. + _('Delete this notice')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/deleteuser.php b/actions/deleteuser.php index 42ef4b9f51..1c1f19b0e6 100644 --- a/actions/deleteuser.php +++ b/actions/deleteuser.php @@ -147,8 +147,20 @@ class DeleteuserAction extends ProfileFormAction } Event::handle('EndDeleteUserForm', array($this, $this->user)); } - $this->submit('form_action-no', _('No'), 'submit form_action-primary', 'no', _("Do not block this user")); - $this->submit('form_action-yes', _('Yes'), 'submit form_action-secondary', 'yes', _('Delete this user')); + $this->submit('form_action-no', + // TRANS: Button label on the delete user form. + _m('BUTTON','No'), + 'submit form_action-primary', + 'no', + // TRANS: Submit button title for 'No' when deleting a user. + _('Do not block this user')); + $this->submit('form_action-yes', + // TRANS: Button label on the delete user form. + _m('BUTTON','Yes'), + 'submit form_action-secondary', + 'yes', + // TRANS: Submit button title for 'Yes' when deleting a user. + _('Delete this user')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/groupblock.php b/actions/groupblock.php index fc95c0e669..e52db6e111 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -173,8 +173,20 @@ class GroupblockAction extends RedirectingAction $this->hidden($k, $v); } } - $this->submit('form_action-no', _('No'), 'submit form_action-primary', 'no', _("Do not block this user from this group")); - $this->submit('form_action-yes', _('Yes'), 'submit form_action-secondary', 'yes', _('Block this user from this group')); + $this->submit('form_action-no', + // TRANS: Button label on the form to block a user from a group. + _m('BUTTON','No'), + 'submit form_action-primary', + 'no', + // TRANS: Submit button title for 'No' when blocking a user from a group. + _('Do not block this user from this group')); + $this->submit('form_action-yes', + // TRANS: Button label on the form to block a user from a group. + _m('BUTTON','Yes'), + 'submit form_action-secondary', + 'yes', + // TRANS: Submit button title for 'Yes' when blocking a user from a group. + _('Block this user from this group')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } From ec0fee0f2a50fa4367f3d3d3ac63178e80743b0d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 22:15:41 +0200 Subject: [PATCH 63/80] Add translator documentation and FIXMEs that plural support should be added for some messages. --- lib/util.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/util.php b/lib/util.php index c120fa3767..b11bb06e3c 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1050,24 +1050,38 @@ function common_date_string($dt) if ($now < $t) { // that shouldn't happen! return common_exact_date($dt); } else if ($diff < 60) { + // TRANS: Used in notices to indicate when the notice was made compared to now. return _('a few seconds ago'); } else if ($diff < 92) { + // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a minute ago'); } else if ($diff < 3300) { + // XXX: should support plural. + // TRANS: Used in notices to indicate when the notice was made compared to now. return sprintf(_('about %d minutes ago'), round($diff/60)); } else if ($diff < 5400) { + // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about an hour ago'); } else if ($diff < 22 * 3600) { + // XXX: should support plural. + // TRANS: Used in notices to indicate when the notice was made compared to now. return sprintf(_('about %d hours ago'), round($diff/3600)); } else if ($diff < 37 * 3600) { + // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a day ago'); } else if ($diff < 24 * 24 * 3600) { + // XXX: should support plural. + // TRANS: Used in notices to indicate when the notice was made compared to now. return sprintf(_('about %d days ago'), round($diff/(24*3600))); } else if ($diff < 46 * 24 * 3600) { + // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a month ago'); } else if ($diff < 330 * 24 * 3600) { + // XXX: should support plural. + // TRANS: Used in notices to indicate when the notice was made compared to now. return sprintf(_('about %d months ago'), round($diff/(30*24*3600))); } else if ($diff < 480 * 24 * 3600) { + // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a year ago'); } else { return common_exact_date($dt); From 76d3fdacae22c206f7b9a04d64ec343604fc24d0 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 22:37:03 +0200 Subject: [PATCH 64/80] Add translator documentation. Fixed a few inconsistencies in the process. Apparently this code has been copied to imsettings.php, and some cases of 'email' had not been changed to 'IM'. Added FIXME for using globals/macros (?) in messages like "%%site.name%%". For easier/more consistent translation, this should preferably be plain %s parameters. --- actions/emailsettings.php | 75 ++++++++++++++++++++++++++++++++------- actions/imsettings.php | 59 ++++++++++++++++++++++++------ 2 files changed, 112 insertions(+), 22 deletions(-) diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 08608348cd..6138a88f90 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -57,6 +57,7 @@ class EmailsettingsAction extends AccountSettingsAction function title() { + // TRANS: Title for e-mail settings. return _('Email settings'); } @@ -68,6 +69,10 @@ class EmailsettingsAction extends AccountSettingsAction function getInstructions() { + // XXX: For consistency of parameters in messages, this should be a + // regular parameters, replaced with sprintf(). + // TRANS: E-mail settings page instructions. + // TRANS: %%site.name%% is the name of the site. return _('Manage how you get email from %%site.name%%.'); } @@ -97,102 +102,126 @@ class EmailsettingsAction extends AccountSettingsAction common_local_url('emailsettings'))); $this->elementStart('fieldset'); $this->elementStart('fieldset', array('id' => 'settings_email_address')); - $this->element('legend', null, _('Address')); + // TRANS: Form legend for e-mail settings form. + $this->element('legend', null, _('Email address')); $this->hidden('token', common_session_token()); if ($user->email) { $this->element('p', array('id' => 'form_confirmed'), $user->email); + // TRANS: Form note in e-mail settings form. $this->element('p', array('class' => 'form_note'), _('Current confirmed email address.')); $this->hidden('email', $user->email); - $this->submit('remove', _('Remove')); + // TRANS: Button label to remove a confirmed e-mail address. + $this->submit('remove', _m('BUTTON','Remove')); } else { $confirm = $this->getConfirmation(); if ($confirm) { $this->element('p', array('id' => 'form_unconfirmed'), $confirm->address); + // TRANS: Form note in e-mail settings form. $this->element('p', array('class' => 'form_note'), _('Awaiting confirmation on this address. '. 'Check your inbox (and spam box!) for a message '. 'with further instructions.')); $this->hidden('email', $confirm->address); - $this->submit('cancel', _('Cancel')); + // TRANS: Button label to cancel an e-mail address confirmation procedure. + $this->submit('cancel', _m('BUTTON','Cancel')); } else { $this->elementStart('ul', 'form_data'); $this->elementStart('li'); + // TRANS: Field label for e-mail address input in e-mail settings form. $this->input('email', _('Email address'), ($this->arg('email')) ? $this->arg('email') : null, + // TRANS: Instructions for e-mail address input form. _('Email address, like "UserName@example.org"')); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('add', _('Add')); + // TRANS: Button label for adding an e-mail address in e-mail settings form. + $this->submit('add', _m('BUTTON','Add')); } } $this->elementEnd('fieldset'); if (common_config('emailpost', 'enabled') && $user->email) { $this->elementStart('fieldset', array('id' => 'settings_email_incoming')); + // TRANS: Form legend for incoming e-mail settings form. $this->element('legend', null, _('Incoming email')); if ($user->incomingemail) { $this->elementStart('p'); $this->element('span', 'address', $user->incomingemail); + // XXX: Looks a little awkward in the UI. + // Something like "xxxx@identi.ca Send email ..". Needs improvement. $this->element('span', 'input_instructions', + // TRANS: Form instructions for incoming e-mail form in e-mail settings. _('Send email to this address to post new notices.')); $this->elementEnd('p'); - $this->submit('removeincoming', _('Remove')); + // TRANS: Button label for removing a set sender e-mail address to post notices from. + $this->submit('removeincoming', _m('BUTTON','Remove')); } $this->elementStart('p'); $this->element('span', 'input_instructions', + // TRANS: Instructions for incoming e-mail address input form. _('Make a new email address for posting to; '. 'cancels the old one.')); $this->elementEnd('p'); - $this->submit('newincoming', _('New')); + // TRANS: Button label for adding an e-mail address to send notices from. + $this->submit('newincoming', _m('BUTTON','New')); $this->elementEnd('fieldset'); } $this->elementStart('fieldset', array('id' => 'settings_email_preferences')); - $this->element('legend', null, _('Preferences')); + // TRANS: Form legend for e-mail preferences form. + $this->element('legend', null, _('Email preferences')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->checkbox('emailnotifysub', + // TRANS: Checkbox label in e-mail preferences form. _('Send me notices of new subscriptions through email.'), $user->emailnotifysub); $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('emailnotifyfav', + // TRANS: Checkbox label in e-mail preferences form. _('Send me email when someone '. 'adds my notice as a favorite.'), $user->emailnotifyfav); $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('emailnotifymsg', + // TRANS: Checkbox label in e-mail preferences form. _('Send me email when someone sends me a private message.'), $user->emailnotifymsg); $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('emailnotifyattn', + // TRANS: Checkbox label in e-mail preferences form. _('Send me email when someone sends me an "@-reply".'), $user->emailnotifyattn); $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('emailnotifynudge', + // TRANS: Checkbox label in e-mail preferences form. _('Allow friends to nudge me and send me an email.'), $user->emailnotifynudge); $this->elementEnd('li'); if (common_config('emailpost', 'enabled')) { $this->elementStart('li'); $this->checkbox('emailpost', + // TRANS: Checkbox label in e-mail preferences form. _('I want to post notices by email.'), $user->emailpost); $this->elementEnd('li'); } $this->elementStart('li'); $this->checkbox('emailmicroid', + // TRANS: Checkbox label in e-mail preferences form. _('Publish a MicroID for my email address.'), $user->emailmicroid); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('save', _('Save')); + // TRANS: Button label to save e-mail preferences. + $this->submit('save', _m('BUTTON','Save')); $this->elementEnd('fieldset'); $this->elementEnd('fieldset'); $this->elementEnd('form'); @@ -253,6 +282,7 @@ class EmailsettingsAction extends AccountSettingsAction } else if ($this->arg('newincoming')) { $this->newIncoming(); } else { + // TRANS: Message given submitting a form with an unknown action in e-mail settings. $this->showForm(_('Unexpected form submission.')); } } @@ -293,13 +323,15 @@ class EmailsettingsAction extends AccountSettingsAction if ($result === false) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error updating e-mail preferences. $this->serverError(_('Couldn\'t update user.')); return; } $user->query('COMMIT'); - $this->showForm(_('Preferences saved.'), true); + // TRANS: Confirmation message for successful e-mail preferences save. + $this->showForm(_('Email preferences saved.'), true); } /** @@ -317,6 +349,7 @@ class EmailsettingsAction extends AccountSettingsAction // Some validation if (!$email) { + // TRANS: Message given saving e-mail address without having provided one. $this->showForm(_('No email address.')); return; } @@ -324,16 +357,20 @@ class EmailsettingsAction extends AccountSettingsAction $email = common_canonical_email($email); if (!$email) { + // TRANS: Message given saving e-mail address that cannot be normalised. $this->showForm(_('Cannot normalize that email address')); return; } if (!Validate::email($email, common_config('email', 'check_domain'))) { + // TRANS: Message given saving e-mail address that not valid. $this->showForm(_('Not a valid email address.')); return; } else if ($user->email == $email) { + // TRANS: Message given saving e-mail address that is already set. $this->showForm(_('That is already your email address.')); return; } else if ($this->emailExists($email)) { + // TRANS: Message given saving e-mail address that is already set for another user. $this->showForm(_('That email address already belongs '. 'to another user.')); return; @@ -350,12 +387,14 @@ class EmailsettingsAction extends AccountSettingsAction if ($result === false) { common_log_db_error($confirm, 'INSERT', __FILE__); + // TRANS: Server error thrown on database error adding e-mail confirmation code. $this->serverError(_('Couldn\'t insert confirmation code.')); return; } mail_confirm_address($user, $confirm->code, $user->nickname, $email); + // TRANS: Message given saving valid e-mail address that is to be confirmed. $msg = _('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.'); @@ -376,11 +415,13 @@ class EmailsettingsAction extends AccountSettingsAction $confirm = $this->getConfirmation(); if (!$confirm) { + // TRANS: Message given canceling e-mail address confirmation that is not pending. $this->showForm(_('No pending confirmation to cancel.')); return; } if ($confirm->address != $email) { - $this->showForm(_('That is the wrong IM address.')); + // TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. + $this->showForm(_('That is the wrong email address.')); return; } @@ -388,11 +429,13 @@ class EmailsettingsAction extends AccountSettingsAction if (!$result) { common_log_db_error($confirm, 'DELETE', __FILE__); + // TRANS: Server error thrown on database error canceling e-mail address confirmation. $this->serverError(_('Couldn\'t delete email confirmation.')); return; } - $this->showForm(_('Confirmation cancelled.'), true); + // TRANS: Message given after successfully canceling e-mail address confirmation. + $this->showForm(_('Email confirmation cancelled.'), true); } /** @@ -410,6 +453,8 @@ class EmailsettingsAction extends AccountSettingsAction // Maybe an old tab open...? if ($user->email != $email) { + // TRANS: Message given trying to remove an e-mail address that is not + // TRANS: registered for the active user. $this->showForm(_('That is not your email address.')); return; } @@ -424,12 +469,14 @@ class EmailsettingsAction extends AccountSettingsAction if (!$result) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error removing a registered e-mail address. $this->serverError(_('Couldn\'t update user.')); return; } $user->query('COMMIT'); - $this->showForm(_('The address was removed.'), true); + // TRANS: Message given after successfully removing a registered e-mail address. + $this->showForm(_('The email address was removed.'), true); } /** @@ -453,9 +500,11 @@ class EmailsettingsAction extends AccountSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error removing incoming e-mail address. $this->serverError(_("Couldn't update user record.")); } + // TRANS: Message given after successfully removing an incoming e-mail address. $this->showForm(_('Incoming email address removed.'), true); } @@ -475,9 +524,11 @@ class EmailsettingsAction extends AccountSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error adding incoming e-mail address. $this->serverError(_("Couldn't update user record.")); } + // TRANS: Message given after successfully adding an incoming e-mail address. $this->showForm(_('New incoming email address added.'), true); } diff --git a/actions/imsettings.php b/actions/imsettings.php index c3360fb12a..6e138d3a6c 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -56,6 +56,7 @@ class ImsettingsAction extends ConnectSettingsAction function title() { + // TRANS: Title for instance messaging settings. return _('IM settings'); } @@ -67,6 +68,9 @@ class ImsettingsAction extends ConnectSettingsAction function getInstructions() { + // TRANS: Instant messaging settings page instructions. + // TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. + // TRANS: the order and formatting of link text and link should remain unchanged. return _('You can send and receive notices through '. 'Jabber/GTalk [instant messages](%%doc.im%%). '. 'Configure your address and settings below.'); @@ -86,6 +90,7 @@ class ImsettingsAction extends ConnectSettingsAction { if (!common_config('xmpp', 'enabled')) { $this->element('div', array('class' => 'error'), + // TRANS: Message given in the IM settings if XMPP is not enabled on the site. _('IM is not available.')); return; } @@ -97,32 +102,41 @@ class ImsettingsAction extends ConnectSettingsAction 'action' => common_local_url('imsettings'))); $this->elementStart('fieldset', array('id' => 'settings_im_address')); - $this->element('legend', null, _('Address')); + // TRANS: Form legend for IM settings form. + $this->element('legend', null, _('IM address')); $this->hidden('token', common_session_token()); if ($user->jabber) { $this->element('p', 'form_confirmed', $user->jabber); + // TRANS: Form note in IM settings form. $this->element('p', 'form_note', _('Current confirmed Jabber/GTalk address.')); $this->hidden('jabber', $user->jabber); - $this->submit('remove', _('Remove')); + // TRANS: Button label to remove a confirmed IM address. + $this->submit('remove', _m('BUTTON','Remove')); } else { $confirm = $this->getConfirmation(); if ($confirm) { $this->element('p', 'form_unconfirmed', $confirm->address); $this->element('p', 'form_note', + // TRANS: Form note in IM settings form. + // TRANS: %s is the IM address set for the site. sprintf(_('Awaiting confirmation on this address. '. 'Check your Jabber/GTalk account for a '. 'message with further instructions. '. '(Did you add %s to your buddy list?)'), jabber_daemon_address())); $this->hidden('jabber', $confirm->address); - $this->submit('cancel', _('Cancel')); + // TRANS: Button label to cancel a IM address confirmation procedure. + $this->submit('cancel', _m('BUTTON','Cancel')); } else { $this->elementStart('ul', 'form_data'); $this->elementStart('li'); + // TRANS: Field label for IM address input in IM settings form. $this->input('jabber', _('IM address'), ($this->arg('jabber')) ? $this->arg('jabber') : null, + // TRANS: Form note in IM settings form. + // TRANS: %s is the IM address set for the site. sprintf(_('Jabber or GTalk address, '. 'like "UserName@example.org". '. 'First, make sure to add %s to your '. @@ -130,37 +144,44 @@ class ImsettingsAction extends ConnectSettingsAction jabber_daemon_address())); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('add', _('Add')); + // TRANS: Button label for adding an IM address in IM settings form. + $this->submit('add', _m('BUTTON','Add')); } } $this->elementEnd('fieldset'); $this->elementStart('fieldset', array('id' => 'settings_im_preferences')); - $this->element('legend', null, _('Preferences')); + // TRANS: Form legend for IM preferences form. + $this->element('legend', null, _('IM preferences')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->checkbox('jabbernotify', + // TRANS: Checkbox label in IM preferences form. _('Send me notices through Jabber/GTalk.'), $user->jabbernotify); $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('updatefrompresence', + // TRANS: Checkbox label in IM preferences form. _('Post a notice when my Jabber/GTalk status changes.'), $user->updatefrompresence); $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('jabberreplies', + // TRANS: Checkbox label in IM preferences form. _('Send me replies through Jabber/GTalk '. 'from people I\'m not subscribed to.'), $user->jabberreplies); $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('jabbermicroid', + // TRANS: Checkbox label in IM preferences form. _('Publish a MicroID for my Jabber/GTalk address.'), $user->jabbermicroid); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('save', _('Save')); + // TRANS: Button label to save IM preferences. + $this->submit('save', _m('BUTTON','Save')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } @@ -217,6 +238,7 @@ class ImsettingsAction extends ConnectSettingsAction } else if ($this->arg('remove')) { $this->removeAddress(); } else { + // TRANS: Message given submitting a form with an unknown action in IM settings. $this->showForm(_('Unexpected form submission.')); } } @@ -232,7 +254,6 @@ class ImsettingsAction extends ConnectSettingsAction function savePreferences() { - $jabbernotify = $this->boolean('jabbernotify'); $updatefrompresence = $this->boolean('updatefrompresence'); $jabberreplies = $this->boolean('jabberreplies'); @@ -255,12 +276,14 @@ class ImsettingsAction extends ConnectSettingsAction if ($result === false) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error updating IM preferences. $this->serverError(_('Couldn\'t update user.')); return; } $user->query('COMMIT'); + // TRANS: Confirmation message for successful IM preferences save. $this->showForm(_('Preferences saved.'), true); } @@ -282,6 +305,7 @@ class ImsettingsAction extends ConnectSettingsAction // Some validation if (!$jabber) { + // TRANS: Message given saving IM address without having provided one. $this->showForm(_('No Jabber ID.')); return; } @@ -289,16 +313,20 @@ class ImsettingsAction extends ConnectSettingsAction $jabber = jabber_normalize_jid($jabber); if (!$jabber) { + // TRANS: Message given saving IM address that cannot be normalised. $this->showForm(_('Cannot normalize that Jabber ID')); return; } if (!jabber_valid_base_jid($jabber, common_config('email', 'domain_check'))) { + // TRANS: Message given saving IM address that not valid. $this->showForm(_('Not a valid Jabber ID')); return; } else if ($user->jabber == $jabber) { + // TRANS: Message given saving IM address that is already set. $this->showForm(_('That is already your Jabber ID.')); return; } else if ($this->jabberExists($jabber)) { + // TRANS: Message given saving IM address that is already set for another user. $this->showForm(_('Jabber ID already belongs to another user.')); return; } @@ -316,6 +344,7 @@ class ImsettingsAction extends ConnectSettingsAction if ($result === false) { common_log_db_error($confirm, 'INSERT', __FILE__); + // TRANS: Server error thrown on database error adding IM confirmation code. $this->serverError(_('Couldn\'t insert confirmation code.')); return; } @@ -324,6 +353,8 @@ class ImsettingsAction extends ConnectSettingsAction $user->nickname, $jabber); + // TRANS: Message given saving valid IM address that is to be confirmed. + // TRANS: %s is the IM address set for the site. $msg = sprintf(_('A confirmation code was sent '. 'to the IM address you added. '. 'You must approve %s for '. @@ -348,10 +379,12 @@ class ImsettingsAction extends ConnectSettingsAction $confirm = $this->getConfirmation(); if (!$confirm) { + // TRANS: Message given canceling IM address confirmation that is not pending. $this->showForm(_('No pending confirmation to cancel.')); return; } if ($confirm->address != $jabber) { + // TRANS: Message given canceling IM address confirmation for the wrong IM address. $this->showForm(_('That is the wrong IM address.')); return; } @@ -360,11 +393,13 @@ class ImsettingsAction extends ConnectSettingsAction if (!$result) { common_log_db_error($confirm, 'DELETE', __FILE__); - $this->serverError(_('Couldn\'t delete email confirmation.')); + // TRANS: Server error thrown on database error canceling IM address confirmation. + $this->serverError(_('Couldn\'t delete IM confirmation.')); return; } - $this->showForm(_('Confirmation cancelled.'), true); + // TRANS: Message given after successfully canceling IM address confirmation. + $this->showForm(_('IM confirmation cancelled.'), true); } /** @@ -384,6 +419,8 @@ class ImsettingsAction extends ConnectSettingsAction // Maybe an old tab open...? if ($user->jabber != $jabber) { + // TRANS: Message given trying to remove an IM address that is not + // TRANS: registered for the active user. $this->showForm(_('That is not your Jabber ID.')); return; } @@ -398,6 +435,7 @@ class ImsettingsAction extends ConnectSettingsAction if (!$result) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error removing a registered IM address. $this->serverError(_('Couldn\'t update user.')); return; } @@ -405,7 +443,8 @@ class ImsettingsAction extends ConnectSettingsAction // XXX: unsubscribe to the old address - $this->showForm(_('The address was removed.'), true); + // TRANS: Message given after successfully removing a registered IM address. + $this->showForm(_('The IM address was removed.'), true); } /** From 97ee2c2f125af15dc014e2a77aed225f3fc43c6e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 23:22:36 +0200 Subject: [PATCH 65/80] Fix a typo and small error in translator documentation --- actions/imsettings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/imsettings.php b/actions/imsettings.php index 6e138d3a6c..6691c8dad7 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -127,7 +127,7 @@ class ImsettingsAction extends ConnectSettingsAction '(Did you add %s to your buddy list?)'), jabber_daemon_address())); $this->hidden('jabber', $confirm->address); - // TRANS: Button label to cancel a IM address confirmation procedure. + // TRANS: Button label to cancel an IM address confirmation procedure. $this->submit('cancel', _m('BUTTON','Cancel')); } else { $this->elementStart('ul', 'form_data'); @@ -135,7 +135,7 @@ class ImsettingsAction extends ConnectSettingsAction // TRANS: Field label for IM address input in IM settings form. $this->input('jabber', _('IM address'), ($this->arg('jabber')) ? $this->arg('jabber') : null, - // TRANS: Form note in IM settings form. + // TRANS: IM address input field instructions in IM settings form. // TRANS: %s is the IM address set for the site. sprintf(_('Jabber or GTalk address, '. 'like "UserName@example.org". '. From 7ace3156ca70b908d6d9c359be0e1f9a0414197c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 23:24:38 +0200 Subject: [PATCH 66/80] Add translator documentation. Fixed a few inconsistencies in the process. Confused about the e-mail related messages in the code. --- actions/smssettings.php | 74 ++++++++++++++++++++++++++++++++++------- 1 file changed, 62 insertions(+), 12 deletions(-) diff --git a/actions/smssettings.php b/actions/smssettings.php index 751495d57a..6af1872a0e 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -55,6 +55,7 @@ class SmssettingsAction extends ConnectSettingsAction function title() { + // TRANS: Title for SMS settings. return _('SMS settings'); } @@ -66,6 +67,10 @@ class SmssettingsAction extends ConnectSettingsAction function getInstructions() { + // XXX: For consistency of parameters in messages, this should be a + // regular parameters, replaced with sprintf(). + // TRANS: SMS settings page instructions. + // TRANS: %%site.name%% is the name of the site. return _('You can receive SMS messages through email from %%site.name%%.'); } @@ -88,6 +93,7 @@ class SmssettingsAction extends ConnectSettingsAction { if (!common_config('sms', 'enabled')) { $this->element('div', array('class' => 'error'), + // TRANS: Message given in the SMS settings if SMS is not enabled on the site. _('SMS is not available.')); return; } @@ -101,7 +107,8 @@ class SmssettingsAction extends ConnectSettingsAction common_local_url('smssettings'))); $this->elementStart('fieldset', array('id' => 'settings_sms_address')); - $this->element('legend', null, _('Address')); + // TRANS: Form legend for SMS settings form. + $this->element('legend', null, _('SMS address')); $this->hidden('token', common_session_token()); if ($user->sms) { @@ -109,10 +116,12 @@ class SmssettingsAction extends ConnectSettingsAction $this->element('p', 'form_confirmed', $user->sms . ' (' . $carrier->name . ')'); $this->element('p', 'form_guide', + // TRANS: Form guide in SMS settings form. _('Current confirmed SMS-enabled phone number.')); $this->hidden('sms', $user->sms); $this->hidden('carrier', $user->carrier); - $this->submit('remove', _('Remove')); + // TRANS: Button label to remove a confirmed SMS address. + $this->submit('remove', _m('BUTTON','Remove')); } else { $confirm = $this->getConfirmation(); if ($confirm) { @@ -120,57 +129,75 @@ class SmssettingsAction extends ConnectSettingsAction $this->element('p', 'form_unconfirmed', $confirm->address . ' (' . $carrier->name . ')'); $this->element('p', 'form_guide', + // TRANS: Form guide in IM settings form. _('Awaiting confirmation on this phone number.')); $this->hidden('sms', $confirm->address); $this->hidden('carrier', $confirm->address_extra); - $this->submit('cancel', _('Cancel')); + // TRANS: Button label to cancel a SMS address confirmation procedure. + $this->submit('cancel', _m('BUTTON','Cancel')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); + // TRANS: Field label for SMS address input in SMS settings form. $this->input('code', _('Confirmation code'), null, + // TRANS: Form field instructions in SMS settings form. _('Enter the code you received on your phone.')); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('confirm', _('Confirm')); + // TRANS: Button label to confirm SMS confirmation code in SMS settings. + $this->submit('confirm', _m('BUTTON','Confirm')); } else { $this->elementStart('ul', 'form_data'); $this->elementStart('li'); + // TRANS: Field label for SMS phone number input in SMS settings form. $this->input('sms', _('SMS phone number'), ($this->arg('sms')) ? $this->arg('sms') : null, + // TRANS: SMS phone number input field instructions in SMS settings form. _('Phone number, no punctuation or spaces, '. 'with area code')); $this->elementEnd('li'); $this->elementEnd('ul'); $this->carrierSelect(); - $this->submit('add', _('Add')); + // TRANS: Button label for adding a SMS phone number in SMS settings form. + $this->submit('add', _m('BUTTON','Add')); } } $this->elementEnd('fieldset'); if ($user->sms) { $this->elementStart('fieldset', array('id' => 'settings_sms_incoming_email')); + // XXX: Confused! This is about SMS. Should this message be updated? + // TRANS: Form legend for incoming SMS settings form. $this->element('legend', null, _('Incoming email')); if ($user->incomingemail) { $this->element('p', 'form_unconfirmed', $user->incomingemail); $this->element('p', 'form_note', + // XXX: Confused! This is about SMS. Should this message be updated? + // TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. _('Send email to this address to post new notices.')); - $this->submit('removeincoming', _('Remove')); + // TRANS: Button label for removing a set sender SMS e-mail address to post notices from. + $this->submit('removeincoming', _m('BUTTON','Remove')); } $this->element('p', 'form_guide', + // XXX: Confused! This is about SMS. Should this message be updated? + // TRANS: Instructions for incoming SMS e-mail address input form. _('Make a new email address for posting to; '. 'cancels the old one.')); - $this->submit('newincoming', _('New')); + // TRANS: Button label for adding an SMS e-mail address to send notices from. + $this->submit('newincoming', _m('BUTTON','New')); $this->elementEnd('fieldset'); } $this->elementStart('fieldset', array('id' => 'settings_sms_preferences')); - $this->element('legend', null, _('Preferences')); + // TRANS: Form legend for SMS preferences form. + $this->element('legend', null, _('SMS preferences')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->checkbox('smsnotify', + // TRANS: Checkbox label in SMS preferences form. _('Send me notices through SMS; '. 'I understand I may incur '. 'exorbitant charges from my carrier.'), @@ -178,7 +205,8 @@ class SmssettingsAction extends ConnectSettingsAction $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('save', _('Save')); + // TRANS: Button label to save SMS preferences. + $this->submit('save', _m('BUTTON','Save')); $this->elementEnd('fieldset'); $this->elementEnd('form'); @@ -245,6 +273,7 @@ class SmssettingsAction extends ConnectSettingsAction } else if ($this->arg('confirm')) { $this->confirmCode(); } else { + // TRANS: Message given submitting a form with an unknown action in SMS settings. $this->showForm(_('Unexpected form submission.')); } } @@ -275,13 +304,15 @@ class SmssettingsAction extends ConnectSettingsAction if ($result === false) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error updating SMS preferences. $this->serverError(_('Couldn\'t update user.')); return; } $user->query('COMMIT'); - $this->showForm(_('Preferences saved.'), true); + // TRANS: Confirmation message for successful SMS preferences save. + $this->showForm(_('SMS preferences saved.'), true); } /** @@ -303,11 +334,13 @@ class SmssettingsAction extends ConnectSettingsAction // Some validation if (!$sms) { + // TRANS: Message given saving SMS phone number without having provided one. $this->showForm(_('No phone number.')); return; } if (!$carrier_id) { + // TRANS: Message given saving SMS phone number without having selected a carrier. $this->showForm(_('No carrier selected.')); return; } @@ -315,9 +348,11 @@ class SmssettingsAction extends ConnectSettingsAction $sms = common_canonical_sms($sms); if ($user->sms == $sms) { + // TRANS: Message given saving SMS phone number that is already set. $this->showForm(_('That is already your phone number.')); return; } else if ($this->smsExists($sms)) { + // TRANS: Message given saving SMS phone number that is already set for another user. $this->showForm(_('That phone number already belongs to another user.')); return; } @@ -334,6 +369,7 @@ class SmssettingsAction extends ConnectSettingsAction if ($result === false) { common_log_db_error($confirm, 'INSERT', __FILE__); + // TRANS: Server error thrown on database error adding SMS confirmation code. $this->serverError(_('Couldn\'t insert confirmation code.')); return; } @@ -344,6 +380,7 @@ class SmssettingsAction extends ConnectSettingsAction $user->nickname, $carrier->toEmailAddress($sms)); + // TRANS: Message given saving valid SMS phone number that is to be confirmed. $msg = _('A confirmation code was sent to the phone number you added. '. 'Check your phone for the code and instructions '. 'on how to use it.'); @@ -367,10 +404,12 @@ class SmssettingsAction extends ConnectSettingsAction $confirm = $this->getConfirmation(); if (!$confirm) { + // TRANS: Message given canceling SMS phone number confirmation that is not pending. $this->showForm(_('No pending confirmation to cancel.')); return; } if ($confirm->address != $sms) { + // TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. $this->showForm(_('That is the wrong confirmation number.')); return; } @@ -379,11 +418,13 @@ class SmssettingsAction extends ConnectSettingsAction if (!$result) { common_log_db_error($confirm, 'DELETE', __FILE__); + // TRANS: Server error thrown on database error canceling SMS phone number confirmation. $this->serverError(_('Couldn\'t delete email confirmation.')); return; } - $this->showForm(_('Confirmation cancelled.'), true); + // TRANS: Message given after successfully canceling SMS phone number confirmation. + $this->showForm(_('SMS confirmation cancelled.'), true); } /** @@ -402,6 +443,8 @@ class SmssettingsAction extends ConnectSettingsAction // Maybe an old tab open...? if ($user->sms != $sms) { + // TRANS: Message given trying to remove an SMS phone number that is not + // TRANS: registered for the active user. $this->showForm(_('That is not your phone number.')); return; } @@ -417,12 +460,14 @@ class SmssettingsAction extends ConnectSettingsAction $result = $user->updateKeys($original); if (!$result) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error removing a registered SMS phone number. $this->serverError(_('Couldn\'t update user.')); return; } $user->query('COMMIT'); - $this->showForm(_('The address was removed.'), true); + // TRANS: Message given after successfully removing a registered SMS phone number. + $this->showForm(_('The SMS phone number was removed.'), true); } /** @@ -462,10 +507,12 @@ class SmssettingsAction extends ConnectSettingsAction $this->elementStart('ul', 'form_data'); $this->elementStart('li'); + // TRANS: Label for mobile carrier dropdown menu in SMS settings. $this->element('label', array('for' => 'carrier'), _('Mobile carrier')); $this->elementStart('select', array('name' => 'carrier', 'id' => 'carrier')); $this->element('option', array('value' => 0), + // TRANS: Default option for mobile carrier dropdown menu in SMS settings. _('Select a carrier')); while ($carrier->fetch()) { $this->element('option', array('value' => $carrier->id), @@ -473,6 +520,8 @@ class SmssettingsAction extends ConnectSettingsAction } $this->elementEnd('select'); $this->element('p', 'form_guide', + // TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. + // TRANS: %s is an administrative contact's e-mail address. sprintf(_('Mobile carrier for your phone. '. 'If you know a carrier that accepts ' . 'SMS over email but isn\'t listed here, ' . @@ -495,6 +544,7 @@ class SmssettingsAction extends ConnectSettingsAction $code = $this->trimmed('code'); if (!$code) { + // TRANS: Message given saving SMS phone number confirmation code without having provided one. $this->showForm(_('No code entered')); return; } From 8795b3546dbf640e4b71a4d800bd49a3ef0b3534 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 23:39:24 +0200 Subject: [PATCH 67/80] Add translator documentation and number parameters if multiple are used in a message. --- lib/command.php | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/lib/command.php b/lib/command.php index 216f9e649a..ca09da28f6 100644 --- a/lib/command.php +++ b/lib/command.php @@ -122,6 +122,8 @@ class Command } Event::handle('EndCommandGetProfile', array($this, $arg, &$profile)); if (!$profile) { + // TRANS: Message given requesting a profile for a non-existing user. + // TRANS: %s is the nickname of the user for which the profile could not be found. throw new CommandException(sprintf(_('Could not find a user with nickname %s'), $arg)); } return $profile; @@ -140,6 +142,8 @@ class Command } Event::handle('EndCommandGetUser', array($this, $arg, &$user)); if (!$user){ + // TRANS: Message given getting a non-existing user. + // TRANS: %s is the nickname of the user that could not be found. throw new CommandException(sprintf(_('Could not find a local user with nickname %s'), $arg)); } @@ -225,6 +229,8 @@ class NudgeCommand extends Command } // XXX: notify by IM // XXX: notify by SMS + // TRANS: Message given having nudged another user. + // TRANS: %s is the nickname of the user that was nudged. $channel->output($this->user, sprintf(_('Nudge sent to %s'), $recipient->nickname)); } @@ -328,12 +334,16 @@ class JoinCommand extends Command Event::handle('EndJoinGroup', array($group, $cur)); } } catch (Exception $e) { - $channel->error($cur, sprintf(_('Could not join user %s to group %s'), + // TRANS: Message given having failed to add a user to a group. + // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. + $channel->error($cur, sprintf(_('Could not join user %1$s to group %2$s'), $cur->nickname, $group->nickname)); return; } - $channel->output($cur, sprintf(_('%s joined group %s'), + // TRANS: Message given having added a user to a group. + // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. + $channel->output($cur, sprintf(_('%1$s joined group %2$s'), $cur->nickname, $group->nickname)); } @@ -370,12 +380,16 @@ class DropCommand extends Command Event::handle('EndLeaveGroup', array($group, $cur)); } } catch (Exception $e) { - $channel->error($cur, sprintf(_('Could not remove user %s to group %s'), + // TRANS: Message given having failed to remove a user from a group. + // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. + $channel->error($cur, sprintf(_('Could not remove user %s from group %s'), $cur->nickname, $group->nickname)); return; } - $channel->output($cur, sprintf(_('%s left group %s'), + // TRANS: Message given having removed a user from a group. + // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. + $channel->output($cur, sprintf(_('%1$s left group %2$s'), $cur->nickname, $group->nickname)); } @@ -395,18 +409,24 @@ class WhoisCommand extends Command { $recipient = $this->getProfile($this->other); + // TRANS: Whois output. + // TRANS: %1$s nickname of the queried user, %2$s is their profile URL. $whois = sprintf(_("%1\$s (%2\$s)"), $recipient->nickname, $recipient->profileurl); if ($recipient->fullname) { + // TRANS: Whois output. %s is the full name of the queried user. $whois .= "\n" . sprintf(_('Fullname: %s'), $recipient->fullname); } if ($recipient->location) { + // TRANS: Whois output. %s is the location of the queried user. $whois .= "\n" . sprintf(_('Location: %s'), $recipient->location); } if ($recipient->homepage) { + // TRANS: Whois output. %s is the homepage of the queried user. $whois .= "\n" . sprintf(_('Homepage: %s'), $recipient->homepage); } if ($recipient->bio) { + // TRANS: Whois output. %s is the bio information of the queried user. $whois .= "\n" . sprintf(_('About: %s'), $recipient->bio); } $channel->output($this->user, $whois); @@ -447,7 +467,9 @@ class MessageCommand extends Command $this->text = common_shorten_links($this->text); if (Message::contentTooLong($this->text)) { - $channel->error($this->user, sprintf(_('Message too long - maximum is %d characters, you sent %d'), + // TRANS: Message given if content is too long. + // TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. + $channel->error($this->user, sprintf(_('Message too long - maximum is %1$d characters, you sent %2$d'), Message::maxContent(), mb_strlen($this->text))); return; } @@ -465,6 +487,8 @@ class MessageCommand extends Command $message = Message::saveNew($this->user->id, $other->id, $this->text, $channel->source()); if ($message) { $message->notify(); + // TRANS: Message given have sent a direct message to another user. + // TRANS: %s is the name of the other user. $channel->output($this->user, sprintf(_('Direct message to %s sent'), $this->other)); } else { $channel->error($this->user, _('Error sending direct message.')); @@ -500,6 +524,8 @@ class RepeatCommand extends Command if ($repeat) { + // TRANS: Message given having repeated a notice from another user. + // TRANS: %s is the name of the user for which the notice was repeated. $channel->output($this->user, sprintf(_('Notice from %s repeated'), $recipient->nickname)); } else { $channel->error($this->user, _('Error repeating notice.')); From d7033c89066c756f630c4ff8eb840852c836d87b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 23:47:04 +0200 Subject: [PATCH 68/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/af/LC_MESSAGES/statusnet.po | 724 ++++++++++++++-------- locale/ar/LC_MESSAGES/statusnet.po | 719 ++++++++++++++-------- locale/arz/LC_MESSAGES/statusnet.po | 717 ++++++++++++++-------- locale/bg/LC_MESSAGES/statusnet.po | 716 ++++++++++++++-------- locale/br/LC_MESSAGES/statusnet.po | 725 ++++++++++++++-------- locale/ca/LC_MESSAGES/statusnet.po | 719 ++++++++++++++-------- locale/cs/LC_MESSAGES/statusnet.po | 715 ++++++++++++++-------- locale/de/LC_MESSAGES/statusnet.po | 724 ++++++++++++++-------- locale/el/LC_MESSAGES/statusnet.po | 716 ++++++++++++++-------- locale/en_GB/LC_MESSAGES/statusnet.po | 739 +++++++++++++++-------- locale/es/LC_MESSAGES/statusnet.po | 721 ++++++++++++++-------- locale/fa/LC_MESSAGES/statusnet.po | 721 ++++++++++++++-------- locale/fi/LC_MESSAGES/statusnet.po | 721 ++++++++++++++-------- locale/fr/LC_MESSAGES/statusnet.po | 725 ++++++++++++++-------- locale/ga/LC_MESSAGES/statusnet.po | 715 ++++++++++++++-------- locale/gl/LC_MESSAGES/statusnet.po | 721 ++++++++++++++-------- locale/he/LC_MESSAGES/statusnet.po | 715 ++++++++++++++-------- locale/hsb/LC_MESSAGES/statusnet.po | 719 ++++++++++++++-------- locale/ia/LC_MESSAGES/statusnet.po | 723 ++++++++++++++-------- locale/is/LC_MESSAGES/statusnet.po | 719 ++++++++++++++-------- locale/it/LC_MESSAGES/statusnet.po | 830 +++++++++++++++++--------- locale/ja/LC_MESSAGES/statusnet.po | 723 ++++++++++++++-------- locale/ko/LC_MESSAGES/statusnet.po | 721 ++++++++++++++-------- locale/mk/LC_MESSAGES/statusnet.po | 721 ++++++++++++++-------- locale/nb/LC_MESSAGES/statusnet.po | 719 ++++++++++++++-------- locale/nl/LC_MESSAGES/statusnet.po | 736 +++++++++++++++-------- locale/nn/LC_MESSAGES/statusnet.po | 721 ++++++++++++++-------- locale/pl/LC_MESSAGES/statusnet.po | 719 ++++++++++++++-------- locale/pt/LC_MESSAGES/statusnet.po | 723 ++++++++++++++-------- locale/pt_BR/LC_MESSAGES/statusnet.po | 723 ++++++++++++++-------- locale/ru/LC_MESSAGES/statusnet.po | 724 ++++++++++++++-------- locale/statusnet.pot | 683 ++++++++++++++------- locale/sv/LC_MESSAGES/statusnet.po | 734 +++++++++++++++-------- locale/te/LC_MESSAGES/statusnet.po | 719 ++++++++++++++-------- locale/tr/LC_MESSAGES/statusnet.po | 715 ++++++++++++++-------- locale/uk/LC_MESSAGES/statusnet.po | 722 ++++++++++++++-------- locale/vi/LC_MESSAGES/statusnet.po | 715 ++++++++++++++-------- locale/zh_CN/LC_MESSAGES/statusnet.po | 717 ++++++++++++++-------- locale/zh_TW/LC_MESSAGES/statusnet.po | 711 ++++++++++++++-------- 39 files changed, 18850 insertions(+), 9340 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 948ac9bf8e..5c4fdc370e 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:34:46+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:03+0000\n" "Language-Team: Afrikaans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: out-statusnet\n" @@ -71,8 +71,13 @@ msgstr "Gesluit" msgid "Save access settings" msgstr "Stoor toegangsinstellings" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Stoor" @@ -103,7 +108,7 @@ msgstr "Hierdie bladsy bestaan nie" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Onbekende gebruiker." @@ -336,7 +341,7 @@ msgstr "Geen status met die ID gevind nie." msgid "This status is already a favorite." msgstr "Hierdie status is reeds 'n gunsteling." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Dit was nie moontlik om 'n gunsteling te skep nie." @@ -458,7 +463,7 @@ msgstr "Groep nie gevind nie!" msgid "You are already a member of that group." msgstr "U is reeds 'n lid van die groep." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -509,17 +514,17 @@ msgid "Invalid token." msgstr "Ongeldige token." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -550,12 +555,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Die vorm is onverwags ingestuur." @@ -807,27 +815,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Nee" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Moenie hierdie gebruiker blokkeer nie" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkeer hierdie gebruiker" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -840,8 +865,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Die groep bestaan nie." @@ -900,16 +925,24 @@ msgstr "" msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Kon nie gebruiker opdateer nie." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "" @@ -961,11 +994,13 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Moenie die applikasie verwyder nie" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Skrap hierdie applikasie" @@ -998,11 +1033,13 @@ msgstr "Verwyder kennisgewing" msgid "Are you sure you want to delete this notice?" msgstr "Is u seker u wil hierdie kennisgewing verwyder?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Moenie hierdie kennisgewing verwyder nie" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Verwyder hierdie kennisgewing" @@ -1024,7 +1061,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Verwyder die gebruiker" @@ -1135,15 +1173,13 @@ msgid "Reset back to default" msgstr "Stel terug na standaard" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Stoor" @@ -1269,178 +1305,238 @@ msgstr "Dit was nie moontlik om die aliasse te skep nie." msgid "Options saved." msgstr "Opsies is gestoor." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "E-posvoorkeure" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adres" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "E-posadres" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Huidige bevestigde e-posadres." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Verwyder" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Kanselleer" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "E-posadres" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "E-posadres, soos \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Voeg by" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Inkomende e-pos" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nuut" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Voorkeure" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Voorkeure is gestoor." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Geen e-posadres." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Nie 'n geldige e-posadres nie." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Dit is al reeds u e-posadres." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "" -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Dit is die verkeerde IM-adres." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Bevestiging gekanselleer." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Dit is nie u e-posadres nie." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Die adres is verwyder." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Geen inkomende e-posadres." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kon nie gebruikersdata opdateer nie." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Inkomende e-posadres is verwyder." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1623,15 +1719,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Blok hierdie gebruiker van hierdie groep" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1799,90 +1897,149 @@ msgstr "" msgid "Error removing the block." msgstr "" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "IM-instellings" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM is nie beskikbaar nie." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IP-adres" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, 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 "IP-adres" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Voorkeure" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Voorkeure is gestoor." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Geen Jabber-ID nie." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Dit was nie moontlik om die Jabber-ID te normaliseer nie" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Nie 'n geldige Jabber-ID nie" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Dit is al reeds u Jabber-ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Die Jabber-ID word reeds deur 'n ander gebruiker gebruik." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, 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 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Dit is die verkeerde IM-adres." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "" +"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Bevestiging gekanselleer." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Dit is nie u Jabber-ID nie." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Die adres is verwyder." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1923,7 +2080,9 @@ msgstr "Nooi nuwe gebruikers" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2016,7 +2175,9 @@ msgstr "U moet aanteken alvorens u by groep kan aansluit." msgid "No nickname or ID." msgstr "Geen gebruikersnaam of ID nie." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s het by groep %2$s aangesluit" @@ -2025,11 +2186,13 @@ msgstr "%1$s het by groep %2$s aangesluit" msgid "You must be logged in to leave a group." msgstr "U moet aanteken alvorens u 'n groep kan verlaat." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "U is nie 'n lid van daardie groep nie." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s het die groep %2$s verlaat" @@ -2135,12 +2298,12 @@ msgstr "" msgid "New message" msgstr "Nuwe boodskap" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "U kan nie 'n boodskap aan hierdie gebruiker stuur nie." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Geen inhoud nie!" @@ -2148,7 +2311,7 @@ msgstr "Geen inhoud nie!" msgid "No recipient specified." msgstr "Geen ontvanger gespesifiseer nie." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2396,7 +2559,7 @@ msgid "6 or more characters" msgstr "6 of meer karakters" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Bevestig" @@ -3691,95 +3854,156 @@ msgstr "" msgid "Save site notice" msgstr "" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "SMS-instellings" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IP-adres" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Bevestig" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "SMS-nommer" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Voorkeure" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Voorkeure is gestoor." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Geen telefoonnommer." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Bevestiging gekanselleer." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS-nommer" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -4920,10 +5144,8 @@ msgstr "Lees-skryf" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Kanselleer" @@ -4999,34 +5221,40 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5034,195 +5262,201 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "U kan nie die gebruiker volg nie: die gebruiker bestaan nie." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" +msgstr "Kon nie die groep skep nie." -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "" - -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Volle naam: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Ligging: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Tuisblad: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Oor: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" +"Boodskap is te lank. Die maksimum is %1$d karakters. U het %2$d karakters " +"gestuur." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "U volg hierdie gebruiker:" msgstr[1] "U volg hierdie gebruikers:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Hierdie gebruiker volg u:" msgstr[1] "Hierdie gebruikers volg u:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "U is nie 'n lid van enige groep nie." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "U is 'n lid van hierdie groep:" msgstr[1] "U is 'n lid van hierdie groepe:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6043,6 +6277,10 @@ msgstr "" msgid "Repeat this notice?" msgstr "" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Ja" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "" @@ -6229,47 +6467,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "'n paar sekondes gelede" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "ongeveer 'n minuut gelede" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minute gelede" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "ongeveer 'n uur gelede" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur gelede" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "ongeveer een dag gelede" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dae gelede" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "ongeveer een maand gelede" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maande gelede" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "ongeveer een jaar gelede" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index c23a8cb064..a300979b85 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-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:34:50+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:06+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -73,8 +73,13 @@ msgstr "مُغلق" msgid "Save access settings" msgstr "حفظ إعدادت الوصول" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "احفظ" @@ -105,7 +110,7 @@ msgstr "لا صفحة كهذه" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "لا مستخدم كهذا." @@ -334,7 +339,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "هذه الحالة مفضلة بالفعل." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضلة." @@ -451,7 +456,7 @@ msgstr "لم توجد المجموعة!" msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -503,17 +508,17 @@ msgid "Invalid token." msgstr "حجم غير صالح." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -546,12 +551,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "" @@ -803,27 +811,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "لا" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "فشل حفظ معلومات المنع." @@ -836,8 +861,8 @@ msgstr "فشل حفظ معلومات المنع." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "لا مجموعة كهذه." @@ -896,16 +921,24 @@ msgstr "" msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "تعذّر تحديث المستخدم." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكتروني." @@ -957,11 +990,13 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "لا تحذف هذا التطبيق" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "احذف هذا التطبيق" @@ -994,11 +1029,13 @@ msgstr "احذف الإشعار" msgid "Are you sure you want to delete this notice?" msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1020,7 +1057,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "احذف هذا المستخدم" @@ -1131,15 +1169,13 @@ msgid "Reset back to default" msgstr "ارجع إلى المبدئي" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1265,178 +1301,238 @@ msgstr "تعذّر إنشاء الكنى." msgid "Options saved." msgstr "حُفظت الخيارات." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "إعدادات البريد الإلكتروني" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "أدر كيف تستلم البريد الإلكتروني من %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "العنوان" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "عنوان البريد الإلكتروني" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "عنوان البريد الإلكتروني المُؤكد الحالي." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "أزل" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "ألغِ" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "عنوان البريد الإلكتروني" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "عنوان البريد الإلكتروني، مثل \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "أضف" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "البريد الإلكتروني الوارد" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "أرسل بريدًا إلكترونيًا إلى هذا العنوان لترسل إشعارات جديدة." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "أنشئ عنوان بريد إلكتروني لترسل إليه؛ ألغِ القديم." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "جديد" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "التفضيلات" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "أرسل لي إشعارات بالاشتراكات الجديدة عبر البريد الإلكتروني." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "أرسل لي بريدًا إلكرتونيًا عندما يضيف أحدهم إشعاري مفضلة." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحد رسالة خاصة." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحد \"@-رد\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "اسمح لأصدقائي بتنبيهي ومراسلتي عبر البريد الإلكتروني." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "أريد أن أرسل الملاحظات عبر البريد الإلكتروني." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "انشر هوية مصغّرة لعنوان بريدي الإلكتروني." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "حُفِظت التفضيلات." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "حُفظت تفضيلات التصميم." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "لا عنوان بريد إلكتروني." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "هذا هو عنوان بريدك الإكتروني سابقًا." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "تعذّر إدراج رمز التأكيد." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "هذا عنوان محادثة فورية خاطئ." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "أُلغي التأكيد." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "هذا ليس عنوان بريدك الإلكتروني." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "أزيل هذا العنوان." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "لا عنوان بريد إلكتروني وارد." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "تعذّر تحديث سجل المستخدم." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1622,15 +1718,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "لا تمنع هذا المستخدم من هذه المجموعة" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "امنع هذا المستخدم من هذه المجموعة" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "خطأ في قاعدة البيانات أثناء منع المستخدم من المجموعة." @@ -1804,90 +1902,148 @@ msgstr "المستخدم ليس ممنوعًا من المجموعة." msgid "Error removing the block." msgstr "خطأ أثناء منع الحجب." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "إعدادات المراسلة الفورية" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "المراسلة الفورية غير متوفرة." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "عنوان المراسلة الفورية" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, 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 "عنوان المراسلة الفورية" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "التفضيلات" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "حُفِظت التفضيلات." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "لا هوية جابر." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "ليست هوية جابر صالحة" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, 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 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "هذا عنوان محادثة فورية خاطئ." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "تعذّر حذف تأكيد البريد الإلكتروني." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "أُلغي التأكيد." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "هذه ليست هويتك في جابر." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "أزيل هذا العنوان." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1928,7 +2084,9 @@ msgstr "دعوة مستخدمين جدد" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2022,7 +2180,9 @@ msgstr "يجب أن تلج لتنضم إلى مجموعة." msgid "No nickname or ID." msgstr "لا اسم مستعار." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s انضم للمجموعة %2$s" @@ -2031,11 +2191,13 @@ msgstr "%1$s انضم للمجموعة %2$s" msgid "You must be logged in to leave a group." msgstr "يجب أن تلج لتغادر مجموعة." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "لست عضوا في تلك المجموعة." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ترك المجموعة %2$s" @@ -2142,12 +2304,12 @@ msgstr "استخدم هذا النموذج لإنشاء مجموعة جديدة. msgid "New message" msgstr "رسالة جديدة" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "لا محتوى!" @@ -2155,7 +2317,7 @@ msgstr "لا محتوى!" msgid "No recipient specified." msgstr "لا مستلم حُدّد." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2405,7 +2567,7 @@ msgid "6 or more characters" msgstr "6 أحرف أو أكثر" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "أكّد" @@ -3734,95 +3896,156 @@ msgstr "نص إشعار عام للموقع (255 حرف كحد أقصى؛ يسم msgid "Save site notice" msgstr "احفظ إشعار الموقع" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "إعدادات الرسائل القصيرة" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "لا يمكنك استلام رسائل قصيرة عبر البريد الإلكرتوني من %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "الرسائل القصيرة غير متوفرة." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "عنوان المراسلة الفورية" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "رمز التأكيد" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "أكّد" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "رقم هاتف SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "التفضيلات" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "حُفِظت التفضيلات." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "لا رقم هاتف." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "إن رقم التأكيد هذا خاطئ." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "أُلغي التأكيد." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "هذا ليس رقم هاتفك." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "رقم هاتف SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "لم تدخل رمزًا" @@ -4978,10 +5201,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "ألغِ" @@ -5055,34 +5276,40 @@ msgstr "فشل الأمر" msgid "Notice with that id does not exist" msgstr "الملاحظة بهذا الرقم غير موجودة" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "ليس للمستخدم إشعار أخير" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "لم يمكن إيجاد مستخدم بالاسم %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "لم يمكن إيجاد مستخدم بالاسم %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "التنبيه تم إرساله إلى %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5093,169 +5320,173 @@ msgstr "" "المشتركون: %2$s\n" "الإشعارات: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "أنت بالفعل عضو في هذه المجموعة" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "لم يمكن ضم المستخدم %s إلى المجموعة %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s انضم إلى مجموعة %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "لم يمكن إزالة المستخدم %s من المجموعة %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s ترك المجموعة %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "الاسم الكامل: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "الموقع: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "الصفحة الرئيسية: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "عن: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "رسالة مباشرة إلى %s تم إرسالها" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "لا يمكنك تكرار ملاحظتك الخاصة" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "كرر بالفعل هذا الإشعار" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "الإشعار من %s مكرر" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "خطأ تكرار الإشعار." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "رُد على رسالة %s" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "خطأ أثناء حفظ الإشعار." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "مُشترك ب%s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "الأمر لم يُجهزّ بعد." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "الإشعار مُطفأ." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "تعذّر إطفاء الإشعارات." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "الإشعار يعمل." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "تعذّر تشغيل الإشعار." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "ألغِ الاشتراك" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "لست مُشتركًا بأي أحد." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "لست مشتركًا بأحد." @@ -5265,11 +5496,11 @@ msgstr[3] "أنت مشترك بهؤلاء الأشخاص:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "لا أحد مشترك بك." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "لا أحد مشترك بك." @@ -5279,11 +5510,11 @@ msgstr[3] "هؤلاء الأشخاص مشتركون بك:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "لست عضوًا في أي مجموعة." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "لست عضوًا في أي مجموعة." @@ -5293,7 +5524,7 @@ msgstr[3] "أنت عضو في هذه المجموعات:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6174,6 +6405,10 @@ msgstr "لا مدخلات رجوع إلى." msgid "Repeat this notice?" msgstr "أأكرّر هذا الإشعار؟ّ" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "نعم" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "كرّر هذا الإشعار" @@ -6361,47 +6596,57 @@ msgctxt "role" msgid "Moderator" msgstr "مراقب" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "قبل سنة تقريبًا" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 878efe2c6b..765a3a6dbe 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-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:34:53+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:09+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 (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -78,8 +78,13 @@ msgstr "مُغلق" msgid "Save access settings" msgstr "اذف إعدادت الموقع" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -111,7 +116,7 @@ msgstr "لا صفحه كهذه" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "لا مستخدم كهذا." @@ -340,7 +345,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "الحاله دى موجوده فعلا فى التفضيلات." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضله." @@ -457,7 +462,7 @@ msgstr "لم توجد المجموعة!" msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -509,17 +514,17 @@ msgid "Invalid token." msgstr "حجم غير صالح." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -552,12 +557,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "" @@ -810,27 +818,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "لا" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "نعم" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "امنع هذا المستخدم" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "فشل حفظ معلومات المنع." @@ -843,8 +868,8 @@ msgstr "فشل حفظ معلومات المنع." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "لا مجموعه كهذه." @@ -903,16 +928,24 @@ msgstr "" msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "تعذّر تحديث المستخدم." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكترونى." @@ -967,12 +1000,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "لا تحذف هذا الإشعار" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "احذف هذا الإشعار" @@ -1006,11 +1041,13 @@ msgstr "احذف الإشعار" msgid "Are you sure you want to delete this notice?" msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1032,7 +1069,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "احذف هذا المستخدم" @@ -1143,15 +1181,13 @@ msgid "Reset back to default" msgstr "ارجع إلى المبدئي" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1278,178 +1314,238 @@ msgstr "تعذّر إنشاء الكنى." msgid "Options saved." msgstr "حُفظت الخيارات." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "تظبيطات الايميل" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "أدر كيف تستلم البريد الإلكترونى من %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "العنوان" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "عنوان الايميل" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "عنوان البريد الإلكترونى المُؤكد الحالى." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "أزل" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "ألغِ" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "عنوان الايميل" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "عنوان البريد الإلكترونى، مثل \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "أضف" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "البريد الإلكترونى الوارد" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "أرسل بريدًا إلكترونيًا إلى هذا العنوان لترسل إشعارات جديده." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "أنشئ عنوان بريد إلكترونى لترسل إليه؛ ألغِ القديم." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "جديد" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "التفضيلات" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "أرسل لى إشعارات بالاشتراكات الجديده عبر البريد الإلكترونى." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "أرسل لى بريدًا إلكترونيًا عندما يرسل لى أحدهم \"@-رد\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "أريد أن أرسل الملاحظات عبر البريد الإلكترونى." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "حُفِظت التفضيلات." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "لا عنوان بريد إلكترونى." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "هذا هو عنوان بريدك الإكترونى سابقًا." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "تعذّر إدراج رمز التأكيد." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "هذا عنوان محادثه فوريه خاطئ." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "أُلغى التأكيد." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "هذا ليس عنوان بريدك الإلكترونى." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "أزيل هذا العنوان." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1635,15 +1731,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "لا تمنع هذا المستخدم من هذه المجموعة" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "امنع هذا المستخدم من هذه المجموعة" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "خطأ فى قاعده البيانات أثناء منع المستخدم من المجموعه." @@ -1811,90 +1909,148 @@ msgstr "المستخدم ليس ممنوعًا من المجموعه." msgid "Error removing the block." msgstr "خطأ أثناء منع الحجب." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "تظبيطات بعت الرسايل الفوريه" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "المراسله الفوريه غير متوفره." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "عنوان الرساله الفوريه" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, 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 "عنوان الرساله الفوريه" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "التفضيلات" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "حُفِظت التفضيلات." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "لا هويه جابر." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "ليست هويه جابر صالحة" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, 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 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "هذا عنوان محادثه فوريه خاطئ." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "تعذّر حذف تأكيد البريد الإلكترونى." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "أُلغى التأكيد." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "هذه ليست هويتك فى جابر." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "أزيل هذا العنوان." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1935,7 +2091,9 @@ msgstr "دعوه مستخدمين جدد" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2030,7 +2188,9 @@ msgstr "" msgid "No nickname or ID." msgstr "لا اسم مستعار." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s دخل جروپ %2$s" @@ -2039,11 +2199,13 @@ msgstr "%1$s دخل جروپ %2$s" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "لست عضوا فى تلك المجموعه." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ساب جروپ %2$s" @@ -2150,12 +2312,12 @@ msgstr "استخدم هذا النموذج لإنشاء مجموعه جديده. msgid "New message" msgstr "رساله جديدة" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "لا محتوى!" @@ -2163,7 +2325,7 @@ msgstr "لا محتوى!" msgid "No recipient specified." msgstr "لا مستلم حُدّد." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2411,7 +2573,7 @@ msgid "6 or more characters" msgstr "" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "أكّد" @@ -3728,95 +3890,156 @@ msgstr "" msgid "Save site notice" msgstr "إشعار الموقع" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "تظبيطات الـSMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "لا يمكنك استلام رسائل قصيره عبر البريد الإلكرتونى من %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "الرسائل القصيره غير متوفره." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "عنوان الرساله الفوريه" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "رمز التأكيد" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "أكّد" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "نمرة تليفون الـSMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "التفضيلات" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "حُفِظت التفضيلات." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "لا رقم هاتف." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "أُلغى التأكيد." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "هذا ليس رقم هاتفك." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "نمرة تليفون الـSMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -4995,10 +5218,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "ألغِ" @@ -5072,34 +5293,40 @@ msgstr "فشل الأمر" msgid "Notice with that id does not exist" msgstr "الملاحظه بالـID ده مالهاش وجود" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "ليس للمستخدم إشعار أخير" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "ما نفعش يلاقى يوزر بإسم %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "ما نفعش يلاقى يوزر بإسم %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Nudge اتبعتت لـ %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5110,169 +5337,173 @@ msgstr "" "المشتركون: %2$s\n" "الإشعارات: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "انت اصلا عضو فى الجروپ ده" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "ما نفعش يدخل اليوزر %s لجروپ %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "ما نفعش يضم %1$s للجروپ %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s انضم إلى مجموعه %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "ما نفعش يشيل اليوزر %s لجروپ %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s ساب الجروپ %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "الاسم الكامل: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "الموقع: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "الصفحه الرئيسية: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "عن: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "رساله مباشره اتبعتت لـ %s" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "الملاحظه بتاعتك مش نافعه تتكرر" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "كرر بالفعل هذا الإشعار" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "الإشعار من %s مكرر" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "خطأ تكرار الإشعار." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "رُد على رساله %s" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "خطأ أثناء حفظ الإشعار." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "مُشترك ب%s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "ألغِ الاشتراك" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "لست مُشتركًا بأى أحد." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "لست مشتركًا بأحد." @@ -5282,11 +5513,11 @@ msgstr[3] "أنت مشترك بهؤلاء الأشخاص:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "لا أحد مشترك بك." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "لا أحد مشترك بك." @@ -5296,11 +5527,11 @@ msgstr[3] "هؤلاء الأشخاص مشتركون بك:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "لست عضوًا فى أى مجموعه." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "لست عضوًا فى أى مجموعه." @@ -5310,7 +5541,7 @@ msgstr[3] "أنت عضو فى هذه المجموعات:" msgstr[4] "" msgstr[5] "" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6132,6 +6363,10 @@ msgstr "لا مدخلات رجوع إلى." msgid "Repeat this notice?" msgstr "كرر هذا الإشعار؟" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "نعم" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "كرر هذا الإشعار" @@ -6320,47 +6555,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "قبل سنه تقريبًا" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index c2c8b92dff..a23a8a62a2 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:34:56+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:12+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -73,8 +73,13 @@ msgstr "Затворен" msgid "Save access settings" msgstr "Запазване настройките за достъп" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Запазване" @@ -105,7 +110,7 @@ msgstr "Няма такака страница." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Няма такъв потребител" @@ -338,7 +343,7 @@ msgstr "Не е открита бележка с такъв идентифика msgid "This status is already a favorite." msgstr "Тази бележка вече е отбелязана като любима." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Грешка при отбелязване като любима." @@ -458,7 +463,7 @@ msgstr "Групата не е открита." msgid "You are already a member of that group." msgstr "Вече членувате в тази група." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -510,17 +515,17 @@ msgid "Invalid token." msgstr "Неправилен размер." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -553,12 +558,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Неочаквано изпращане на форма." @@ -814,27 +822,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Не" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Да не се блокира този потребител" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Блокиране на потребителя" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Грешка при записване данните за блокирането." @@ -847,8 +872,8 @@ msgstr "Грешка при записване данните за блокир #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Няма такава група" @@ -908,16 +933,24 @@ msgstr "Неразпознат вид адрес %s" msgid "That address has already been confirmed." msgstr "Този адрес е вече потвърден." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Грешка при обновяване на потребителя." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Грешка при изтриване потвърждението по е-поща." @@ -973,12 +1006,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Да не се изтрива бележката" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Изтриване на бележката" @@ -1012,11 +1047,13 @@ msgstr "Изтриване на бележката" msgid "Are you sure you want to delete this notice?" msgstr "Наистина ли искате да изтриете тази бележка?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Да не се изтрива бележката" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -1038,7 +1075,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Изтриване на този потребител" @@ -1154,15 +1192,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Запазване" @@ -1295,31 +1331,43 @@ msgstr "Грешка при отбелязване като любима." msgid "Options saved." msgstr "Настройките са запазени." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Настройки на е-поща" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Управление на пощата, идваща от %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Адрес" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Адрес на е-поща" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Текущ потвърден адрес на е-поща." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Премахване" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1327,107 +1375,142 @@ msgstr "" "Очаква се потвърждение за този адрес. Проверете кутията си (или папката за " "спам) за съобщение с указания." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Отказ" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Адрес на е-поща" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Адрес на е-поща, като \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Добавяне" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Входяща поща" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Изпратете писмо до този адрес за публикуване като бележка." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Ново" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Настройки" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Изпращане на уведомления за нови абонаменти по пощата." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Изпращане на писмо при отбелязване на моя бележка като любима." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Изпращане на писмо при ново лично съобщение." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Изпращане на писмо при ново лично съобщение." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Искам да изпращам бележки по пощата." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Публикуване на MicroID за адреса на е-пощата." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Настройките са запазени." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Не е въведена е-поща." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Грешка при нормализиране адреса на е-пощата" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неправилен адрес на е-поща." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Това и сега е адресът на е-пощата ви." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Тази е-поща вече се използва от друг потребител." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Не може да се вмъкне код за потвърждение." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1436,43 +1519,56 @@ msgstr "" "Проверете кутията (или папката за спам) за кода и указанията за използването " "му." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Няма потвърждения, очакващи да бъдат отказани." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Грешен IM адрес." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Потвърждаването е прекъснато." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Това не е вашият адрес на е-поща." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Адресът е премахнат." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Няма входящ адрес на е-поща." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Грешка при обновяване записа на потребител." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Входящият адрес на е-поща е премахнат." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Добавен е нов входящ адрес на е-поща." @@ -1665,17 +1761,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "Списък с потребителите в тази група." -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "Списък с потребителите в тази група." -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1852,12 +1950,16 @@ msgstr "Потребителят ви е блокирал." msgid "Error removing the block." msgstr "Грешка при запазване на потребител." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "IM настройки" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1866,16 +1968,26 @@ msgstr "" "Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" "%). Въведете адреса си в настройките по-долу." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "Страницата не е достъпна във вида медия, който приемате" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "IM адрес" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Текущ потвърден Jabber/GTalk адрес." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1884,12 +1996,9 @@ msgstr "" "Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за " "съобщение с инструкции. (Добавихте ли %s в списъка си там?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "IM адрес" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1898,43 +2007,65 @@ msgstr "" "Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че " "сте добавили %s в списъка си с приятели в IM или GTalk клиента си." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Настройки" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Изпращане на бележките по Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Изпращане по Jabber/GTalk на отговори от хора, " -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Публикуване на MicroID за адреса в Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Настройките са запазени." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Няма Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Грешка при нормализация на този Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Неправилен Jabber ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Това вече е вашият Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Този Jabber ID принадлежи на друг потребител." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1943,10 +2074,35 @@ msgstr "" "На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " "от %s, трябва да го одобрите." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Грешен IM адрес." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Грешка при изтриване потвърждението по е-поща." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Потвърждаването е прекъснато." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Това не е вашият Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Адресът е премахнат." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -1987,7 +2143,9 @@ msgstr "Покани за нови потребители" msgid "You are already subscribed to these users:" msgstr "Вече сте абонирани за следните потребители:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2112,7 +2270,9 @@ msgstr "За да се присъедините към група, трябва msgid "No nickname or ID." msgstr "Няма псевдоним." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s се присъедини към групата %s" @@ -2121,11 +2281,13 @@ msgstr "%s се присъедини към групата %s" msgid "You must be logged in to leave a group." msgstr "За напуснете група, трябва да сте влезли." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Не членувате в тази група." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s напусна групата %2$s" @@ -2239,12 +2401,12 @@ msgstr "Използвайте тази бланка за създаване н msgid "New message" msgstr "Ново съобщение" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Не може да изпращате съобщения до този потребител." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Няма съдържание!" @@ -2252,7 +2414,7 @@ msgstr "Няма съдържание!" msgid "No recipient specified." msgstr "Не е указан получател." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2514,7 +2676,7 @@ msgid "6 or more characters" msgstr "6 или повече знака" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Потвърждаване" @@ -3860,45 +4022,75 @@ msgstr "" msgid "Save site notice" msgstr "Нова бележка" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Настройки за SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "Страницата не е достъпна във вида медия, който приемате" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM адрес" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Текущ потвърден телефонен номер за SMS-и." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Очаква се потвърждение за този телефонен номер." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Код за потвърждение" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Въведете кода, който получихте по телефона." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Потвърждаване" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Телефонен номер за SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонен номер — с код, без пунктоация и без интервали." -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Настройки" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3906,23 +4098,34 @@ msgstr "" "Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни " "такси от оператора." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Настройките са запазени." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Не е въведен телефонен номер." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Не е избран оператор." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Това и сега е номерът на телефона ви." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Този телефонен номер вече се използва от друг потребител." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -3932,23 +4135,42 @@ msgstr "" "Проверете съобщенията (или папката за спам) за кода и указанията за " "използването му." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Този код за потвърждение е грешен." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Потвърждаването е прекъснато." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Това не е вашият телефонен номер." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Телефонен номер за SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Мобилен оператор" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Изберете оператор" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -3957,7 +4179,8 @@ msgstr "" "Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който " "не фигурира тук, пишете ни на адрес %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Не е въведен код." @@ -5174,10 +5397,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Отказ" @@ -5254,34 +5475,40 @@ msgstr "Грешка при изпълнение на командата" msgid "Notice with that id does not exist" msgstr "Не е открита бележка с такъв идентификатор." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Потребителят няма последна бележка" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Грешка при обновяване на потребител с потвърден email адрес." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Грешка при обновяване на потребител с потвърден email адрес." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "За съжаление тази команда все още не се поддържа." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Изпратено е побутване на %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5292,198 +5519,203 @@ msgstr "" "Абонати: %2$s\n" "Бележки: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Бележката е отбелязана като любима." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Вече членувате в тази група." -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "Грешка при проследяване — потребителят не е намерен." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s се присъедини към групата %s" - -#: lib/command.php:373 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "Грешка при проследяване — потребителят не е намерен." -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s напусна групата %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Пълно име: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Местоположение: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Относно: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." +"Съобщението е твърде дълго. Най-много може да е %1$d знака, а сте въвели %2" +"$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Прякото съобщение до %s е изпратено." -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Грешка при изпращане на прякото съобщение" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Не можете да повтаряте собствена бележка" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Вече сте повторили тази бележка." -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Бележката от %s е повторена" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Грешка при повтаряне на бележката." -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Отговорът до %s е изпратен" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Грешка при записване на бележката." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Уточнете името на потребителя, за когото се абонирате." -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Не сте абонирани за този профил" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Абонирани сте за %s." -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Уточнете името на потребителя, от когото се отписвате." -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Отписани сте от %s." -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Командата все още не се поддържа." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Уведомлението е изключено." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Грешка при изключване на уведомлението." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Уведомлението е включено." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Грешка при включване на уведомлението." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Отписани сте от %s." -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Не сте абонирани за никого." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Вече сте абонирани за следните потребители:" msgstr[1] "Вече сте абонирани за следните потребители:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Никой не е абониран за вас." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Грешка при абониране на друг потребител за вас." msgstr[1] "Грешка при абониране на друг потребител за вас." -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Не членувате в нито една група." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Не членувате в тази група." msgstr[1] "Не членувате в тази група." -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6329,6 +6561,10 @@ msgstr "Липсват аргументи return-to." msgid "Repeat this notice?" msgstr "Повтаряне на тази бележка" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Да" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Повтаряне на тази бележка" @@ -6521,47 +6757,57 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "преди няколко секунди" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "преди около минута" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "преди около %d минути" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "преди около час" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "преди около %d часа" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "преди около ден" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "преди около %d дни" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "преди около месец" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "преди около %d месеца" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "преди около година" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 68e61dbabf..d9fb1d0828 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:34:59+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:15+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -72,8 +72,13 @@ msgstr "Serr" msgid "Save access settings" msgstr "Enrollañ an arventennoù moned" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" @@ -103,7 +108,7 @@ msgstr "N'eus ket eus ar bajenn-se." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "N'eus ket eus an implijer-se." @@ -334,7 +339,7 @@ msgstr "N'eo bet kavet statud ebet gant an ID-mañ." 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:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Diposupl eo krouiñ ar pennroll-mañ." @@ -451,7 +456,7 @@ msgstr "N'eo ket bet kavet ar strollad." 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:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Stanket oc'h bet eus ar strollad-mañ gant ur merour." @@ -502,17 +507,17 @@ 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -543,12 +548,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Kinnig ar furmskrid dic'hortoz." @@ -800,27 +808,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Ket" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 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:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Ya" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Stankañ an implijer-mañ" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Diposubl eo enrollañ an titouroù stankañ." @@ -833,8 +858,8 @@ msgstr "Diposubl eo enrollañ an titouroù stankañ." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "N'eus ket eus ar strollad-se." @@ -894,16 +919,24 @@ msgstr "N'eo ket bet anavezet seurt ar chomlec'h %s" msgid "That address has already been confirmed." msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Diposubl eo hizivaat an implijer." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Diposubl eo dilemel ar postel kadarnadur." @@ -955,11 +988,13 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Arabat eo dilemel ar poellad-mañ" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Dilemel ar poelad-se" @@ -992,11 +1027,13 @@ msgstr "Dilemel un ali" 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 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Arabat dilemel an ali-mañ" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Dilemel an ali-mañ" @@ -1018,7 +1055,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Diverkañ an implijer-mañ" @@ -1129,15 +1167,13 @@ msgid "Reset back to default" msgstr "Adlakaat an arventennoù dre ziouer" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Enrollañ" @@ -1263,178 +1299,238 @@ msgstr "Diposubl eo krouiñ an aliasoù." msgid "Options saved." msgstr "Enrollet eo bet ho dibarzhioù." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Arventennoù ar postel" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, 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" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Chomlec'h postel" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 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 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Dilemel" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Nullañ" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Chomlec'h postel" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 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 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Ouzhpennañ" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Postel o tont" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nevez" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Penndibaboù" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 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 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 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 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 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 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "C'hoant am eus kas va alioù dre bostel." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 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" +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Enrollet eo bet an arventennoù design." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Chomlec'h postel ebet." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 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 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Ho postel eo dija." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "" -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email 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." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Nullet eo bet ar gadarnadenn." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 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." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Dilamet eo bet ar chomlec'h." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Chomlec'h postel ebet o tont." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1617,15 +1713,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Arabat stankañ an implijer-mañ eus ar strollad." -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Stankañ an implijer-mañ eus ar strollad-se" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1795,90 +1893,148 @@ msgstr "N'eo ket stanket an implijer-mañ eus ar strollad." msgid "Error removing the block." msgstr "Ur fazi a zo bet e-pad nulladenn ar stankadenn." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Arventennoù ar bostelerezh prim" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "Dizimplijadus eo ar bostelerezh prim" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Chomlec'h postelerezh prim" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Chomlec'h Jabber/GTalk kadarnaet er mare-mañ." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, 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 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Penndibaboù" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Kas din an alioù dre Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Penndibaboù enrollet" + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "ID Jabber ebet." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Diposubl eo implijout an ID Jabber-mañ" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "N'eo ket un ID Jabber reizh." -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Ho ID Jabber eo dija" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Implijet eo an Jabber ID-mañ gant un implijer all." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, 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 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "N'eo ket mat ar chomlec'h postelerezh prim." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Diposubl eo dilemel ar postel kadarnadur." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Nullet eo bet ar gadarnadenn." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "N'eo ket ho ID Jabber." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Dilamet eo bet ar chomlec'h." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1919,7 +2075,9 @@ msgstr "Pediñ implijerien nevez" 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:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2014,7 +2172,9 @@ msgstr "Rankout a reoc'h bezañ luget evit mont en ur strollad." msgid "No nickname or ID." msgstr "Lesanv pe ID ebet." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s a zo bet er strollad %2$s" @@ -2023,11 +2183,13 @@ msgstr "%1$s a zo bet er strollad %2$s" 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:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "N'oc'h ket un ezel eus ar strollad-mañ." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s en deus kuitaet ar strollad %2$s" @@ -2140,12 +2302,12 @@ msgstr "Implijit ar furmskrid-mañ a-benn krouiñ ur strollad nevez." msgid "New message" msgstr "Kemennadenn nevez" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 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:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Goullo eo !" @@ -2153,7 +2315,7 @@ msgstr "Goullo eo !" msgid "No recipient specified." msgstr "N'o peus ket lakaet a resever." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2402,7 +2564,7 @@ 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 +#: actions/register.php:433 msgid "Confirm" msgstr "Kadarnaat" @@ -3701,95 +3863,156 @@ msgstr "" msgid "Save site notice" msgstr "Enrollañ ali ul lec'hienn" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Arventennoù SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "Dizimplijadus eo an SMS." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Chomlec'h postelerezh prim" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Kod kadarnaat" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Kadarnaat" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Niverenn bellgomz evit an SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Penndibaboù" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Penndibaboù enrollet" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Niverenn bellgomz ebet." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Ho niverenn pellgomz eo dija." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "D'un implijer all eo an niverenn-mañ dija." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Direizh eo ar c'hod gwiriekaat-mañ." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Nullet eo bet ar gadarnadenn." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "n'eo ket ho niverenn pellgomz." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Niverenn bellgomz evit an SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Dibab un douger" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "N'eo bet lakaet kod ebet" @@ -4933,10 +5156,8 @@ msgstr "Lenn-skrivañ" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Nullañ" @@ -5012,34 +5233,40 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Blinkadenn kaset da %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5047,198 +5274,204 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Dibosupl eo enskrivañ an implijer %s d'ar strollad %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, 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." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "emezelet eo %s er strollad %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" +msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s." -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "" - -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s {{Gender:.|en|he}} deus kuitaet ar strollad %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Anv klok : %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Lec'hiadur : %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Lec'hienn Web : %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Diwar-benn : %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, 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." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Kaset eo bet ar gemennadenn war eeun da %s." -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Respont kaset da %s" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Digoumanantet eus %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "" -#: lib/command.php:754 +#: lib/command.php:780 #, 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:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:776 +#: lib/command.php:802 #, 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:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "" -#: lib/command.php:798 +#: lib/command.php:824 #, 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:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6059,6 +6292,10 @@ msgstr "" msgid "Repeat this notice?" msgstr "Adkregiñ gant an ali-mañ ?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Ya" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Adkregiñ gant an ali-mañ" @@ -6246,47 +6483,57 @@ msgctxt "role" msgid "Moderator" msgstr "Habasker" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "un nebeud eilennoù zo" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "1 vunutenn zo well-wazh" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "%d munutenn zo well-wazh" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "1 eurvezh zo well-wazh" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "%d eurvezh zo well-wazh" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "1 devezh zo well-wazh" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "%d devezh zo well-wazh" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "miz zo well-wazh" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "%d miz zo well-wazh" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "bloaz zo well-wazh" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index df453314e6..778a1ebce3 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:05+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:17+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -78,8 +78,13 @@ msgstr "Tancat" msgid "Save access settings" msgstr "Desa els paràmetres del lloc" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Desa" @@ -109,7 +114,7 @@ msgstr "No existeix la pàgina." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No existeix aquest usuari." @@ -347,7 +352,7 @@ msgstr "No s'ha trobat cap estatus amb aquesta ID." msgid "This status is already a favorite." msgstr "Aquest estat ja és un preferit." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "No es pot crear favorit." @@ -467,7 +472,7 @@ msgstr "No s'ha trobat el grup." msgid "You are already a member of that group." msgstr "Ja sou membre del grup." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "L'administrador us ha blocat del grup." @@ -519,17 +524,17 @@ msgid "Invalid token." msgstr "Mida invàlida." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -562,12 +567,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Enviament de formulari inesperat." @@ -823,27 +831,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "No bloquis l'usuari" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquejar aquest usuari" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Error al guardar la informació del block." @@ -856,8 +881,8 @@ msgstr "Error al guardar la informació del block." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "No s'ha trobat el grup." @@ -917,16 +942,24 @@ msgstr "Tipus d'adreça desconeguda %s." msgid "That address has already been confirmed." msgstr "Aquesta adreça ja ha estat confirmada." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "No s'ha pogut actualitzar l'usuari." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." @@ -979,12 +1012,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "No es pot esborrar la notificació." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Elimina aquesta aplicació" @@ -1019,11 +1054,13 @@ msgstr "Eliminar nota." msgid "Are you sure you want to delete this notice?" msgstr "N'estàs segur que vols eliminar aquesta notificació?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "No elimineu aquest avís" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Eliminar aquesta nota" @@ -1045,7 +1082,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Suprimeix l'usuari" @@ -1157,15 +1195,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" @@ -1298,32 +1334,44 @@ msgstr "No s'han pogut crear els àlies." msgid "Options saved." msgstr "Configuració guardada." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Configuració del correu electrònic" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Gestionar com reps correus de %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adreça" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Adreça de correu electrònic" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Adreça electrònica confirmada actualment." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Suprimeix" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1331,111 +1379,146 @@ msgstr "" "Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la " "carpeta de spam!) per al missatge amb les instruccions." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel·la" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Adreça de correu electrònic" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Adreça electrònica, com ara «nomusuari@example.org»" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Afegeix" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correu electrònic entrant" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" "Envia correu electrònic a aquesta adreça per publicar noves notificacions." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Posar un nou correu electrònic per publicar; cancel·lar l'antic." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nou" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferències" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" "Envia'm notificacions quan algú nou se'm subscrigui, al meu correu " "electrònic." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Permetre que els amics em reclamin i m'enviïn un correu electrònic." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Vull publicar notificacions per correu electrònic." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publica una MicroID per al meu correu electrònic." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "S'han desat les preferències." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "S'han desat les preferències de disseny." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "No hi ha cap adreça electrònica." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "No es pot normalitzar l'adreça electrònica." -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adreça de correu electrònic no vàlida." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Ja és la vostra adreça electrònica." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "L'adreça electrònica ja pertany a un altre usuari." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "No s'ha pogut inserir el codi de confirmació." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1444,43 +1527,56 @@ msgstr "" "Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest " "codi i les instruccions per utilitzar-lo." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Cap confirmació pendent per a cancel·lar." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Aquesta adreça de missatgeria instantània és incorrecta." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Confirmació cancel·lada." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Aquest no és el teu correu electrònic" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "L'adreça ha estat eliminada." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "No hi ha cap direcció de correu electrònic entrant." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "No s'ha pogut actualitzar el registre de l'usuari." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Eliminat el correu electrònic entrant." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nou correu electrònic entrant afegit." @@ -1670,15 +1766,17 @@ msgstr "" "Esteu segur que voleu blocar l'usuari «%s» del grup «%s»? Se suprimiran del " "grup, i no podran enviar-hi res ni subscriure-s'hi en el futur." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "No bloquis l'usuari del grup" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Bloca l'usuari del grup" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "S'ha produït un error en la base de dades en blocar l'usuari del grup." @@ -1851,11 +1949,15 @@ msgstr "L'usuari no està blocat del grup." msgid "Error removing the block." msgstr "S'ha produït un error en suprimir el bloc." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Paràmetres de missatgeria instantània" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1864,15 +1966,24 @@ msgstr "" "Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/" "GTalk. Configura la teva adreça i opcions a sota." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "La MI no és disponible." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Adreça de missatgeria instantània" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Adreça actual Jabber/Gtalk confirmada." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1882,11 +1993,9 @@ msgstr "" "Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva " "llista d'amics?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Adreça de missatgeria instantània" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1896,45 +2005,67 @@ msgstr "" "assegura't d'afegir a %s a la teva llista d'amics en el teu client de " "missatgeria instantània o a GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferències" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Envia'm avisos per Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Envia'm un avís quan el meu estat Jabber/GTalk canvii." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " "subscrita." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publica una MicroID per a la meva direcció de Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "S'han desat les preferències." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Cap Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Impossible normalitzar aquest Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Jabber ID no vàlid" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Aquest ja és el teu Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1943,10 +2074,35 @@ msgstr "" "S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " "has afegit. Has d'acceptar que %s et pugui enviar missatges." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Aquesta adreça de missatgeria instantània és incorrecta." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Confirmació cancel·lada." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Aquest no és el teu Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "L'adreça ha estat eliminada." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -1991,7 +2147,9 @@ msgstr "Invitar nous usuaris" msgid "You are already subscribed to these users:" msgstr "Ja estàs subscrit a aquests usuaris:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2115,7 +2273,9 @@ msgstr "Has d'haver entrat per participar en un grup." msgid "No nickname or ID." msgstr "Cap sobrenom o ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s s'ha unit al grup %2$s" @@ -2124,11 +2284,13 @@ msgstr "%1$s s'ha unit al grup %2$s" msgid "You must be logged in to leave a group." msgstr "Has d'haver entrat per a poder marxar d'un grup." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "No ets membre d'aquest grup." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s ha abandonat el grup %s" @@ -2244,12 +2406,12 @@ msgstr "Utilitza aquest formulari per crear un nou grup." msgid "New message" msgstr "Nou missatge" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "No podeu enviar un misssatge a aquest usuari." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Cap contingut!" @@ -2257,7 +2419,7 @@ msgstr "Cap contingut!" msgid "No recipient specified." msgstr "No has especificat el destinatari." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." @@ -2518,7 +2680,7 @@ msgid "6 or more characters" msgstr "6 o més caràcters" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirmar" @@ -3899,46 +4061,76 @@ msgstr "" msgid "Save site notice" msgstr "Avís del lloc" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Paràmetres de l'SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name" "%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "L'SMS no és disponible." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Adreça de missatgeria instantània" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telèfon actualment confirmat i activat per SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Esperant confirmació per aquest número de telèfon." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Codi de confirmació" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Escriu el codi que has rebut en el teu telèfon mòbil." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Número de telèfon per als SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferències" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3946,23 +4138,34 @@ msgstr "" "Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una " "exorbitant càrrega del meu transport." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "S'han desat les preferències." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "No hi ha cap número de telèfon." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "No s'ha sel·leccionat cap transport." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Aquest ja és el teu número de telèfon." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Aquest número de telèfon pertany a un altre usuari." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -3972,23 +4175,42 @@ msgstr "" "la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " "instruccions per utilitzar-lo." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Aquest és un número de confirmació incorrecte." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Confirmació cancel·lada." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Aquest no és el teu número de telèfon." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Número de telèfon per als SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Transport mòbil" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Selecciona un transport" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -3998,7 +4220,8 @@ msgstr "" "accepti SMS a través del correu electrònic, però no està a la llista, " "envia'ns un correu electrònic per fer-nos-ho saber %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "No hi ha cap codi entrat" @@ -5225,10 +5448,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancel·la" @@ -5304,34 +5525,40 @@ msgstr "Comanda fallida" msgid "Notice with that id does not exist" msgstr "No hi ha cap perfil amb aquesta id." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "L'usuari no té última nota" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Perdona, aquesta comanda no està implementada." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Reclamació enviada" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5339,202 +5566,206 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Nota marcada com a favorita." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Ja sou membre del grup." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "No s'ha pogut afegir l'usuari %s al grup %s." +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s s'ha pogut afegir al grup %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s ha abandonat el grup %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Nom complet: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Localització: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Pàgina web: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Sobre tu: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Missatge directe per a %s enviat" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Error al enviar el missatge directe." -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "No es poden posar en on les notificacions." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Eliminar aquesta nota" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Notificació publicada" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "Problema en guardar l'avís." -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "S'ha enviat la resposta a %s" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "Problema en guardar l'avís." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Especifica el nom de l'usuari a que vols subscriure't" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "No estàs subscrit a aquest perfil." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Subscrit a %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Has deixat d'estar subscrit a %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Comanda encara no implementada." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notificacions off." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "No es poden posar en off les notificacions." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notificacions on." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "No es poden posar en on les notificacions." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Has deixat d'estar subscrit a %s" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "No estàs subscrit a aquest perfil." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ja estàs subscrit a aquests usuaris:" msgstr[1] "Ja estàs subscrit a aquests usuaris:" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "No pots subscriure a un altre a tu mateix." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "No pots subscriure a un altre a tu mateix." msgstr[1] "No pots subscriure a un altre a tu mateix." -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "No sou membre de cap grup." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sou un membre d'aquest grup:" msgstr[1] "Sou un membre d'aquests grups:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6383,6 +6614,10 @@ msgstr "No argument de la id." msgid "Repeat this notice?" msgstr "Repeteix l'avís" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Sí" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Repeteix l'avís" @@ -6575,47 +6810,57 @@ msgctxt "role" msgid "Moderator" msgstr "Modera" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "fa pocs segons" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "fa un minut" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "fa %d minuts" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "fa una hora" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "fa %d hores" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "fa un dia" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "fa %d dies" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "fa un mes" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "fa %d mesos" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 8539429fde..ff11613736 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:21+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:20+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -78,8 +78,13 @@ msgstr "Žádný takový uživatel." msgid "Save access settings" msgstr "Nastavení" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -111,7 +116,7 @@ msgstr "Žádné takové oznámení." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Žádný takový uživatel." @@ -347,7 +352,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "Toto je již vaše Jabber" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "" @@ -469,7 +474,7 @@ msgstr "Žádný požadavek nebyl nalezen!" msgid "You are already a member of that group." msgstr "Již jste přihlášen" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -522,17 +527,17 @@ msgid "Invalid token." msgstr "Neplatná velikost" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -566,12 +571,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Nečekaná forma submission." @@ -836,28 +844,45 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Ne" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Žádný takový uživatel." -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Ano" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -870,8 +895,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 #, fuzzy msgid "No such group." msgstr "Žádné takové oznámení." @@ -933,16 +958,24 @@ msgstr "Neznámý typ adresy %s" msgid "That address has already been confirmed." msgstr "Adresa již byla potvrzena" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Nelze aktualizovat uživatele" -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Nelze smazat potvrzení emailu" @@ -1000,12 +1033,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Žádné takové oznámení." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Odstranit toto oznámení" @@ -1039,12 +1074,14 @@ msgstr "" msgid "Are you sure you want to delete this notice?" msgstr "" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "Žádné takové oznámení." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -1068,7 +1105,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Odstranit tohoto uživatele" @@ -1185,15 +1223,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Uložit" @@ -1329,180 +1365,240 @@ msgstr "Nelze uložin informace o obrázku" msgid "Options saved." msgstr "Nastavení uloženo." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Nastavení E-mailu" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adresa" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Potvrzení emailové adresy" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Odstranit" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Zrušit" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "Potvrzení emailové adresy" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Přidat" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nový" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Nastavení" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Nastavení uloženo" -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Není platnou mailovou adresou." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Nelze vložit potvrzující kód" -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nečeká žádné potvrzení na zrušení." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Toto je špatná IM adresa" -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Potvrď zrušení" -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Adresa byla odstraněna" -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1702,17 +1798,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "Nelze přesměrovat na server: %s" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "Žádný takový uživatel." -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1892,12 +1990,16 @@ msgstr "Uživatel nemá profil." msgid "Error removing the block." msgstr "Chyba při ukládaní uživatele" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "IM nastavení" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1906,16 +2008,26 @@ msgstr "" "Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%" "%).Zadejte svou adresu níže." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "Tato stránka není k dispozici v typu média která přijímáte." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "IM adresa" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Potvrzené Jabber/GTalk adresy" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1924,12 +2036,9 @@ msgstr "" "Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk " "účtu. (Přidal jste si %s do vašich kontaktů?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "IM adresa" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1938,43 +2047,65 @@ msgstr "" "Jabber nebo GTalk adresy, například \"jmeno@example.org\". Neprve se " "ujistěte že jste přidal %s do vašeho seznamu kontaktů." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Nastavení" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Zasílat oznámení pomocí Jabber/GTalk" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Nastavení uloženo" + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Žádné Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Nelze normalizovat JabberID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Není platným Jabber ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Toto je již vaše Jabber" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID již patří jinému uživateli" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1983,10 +2114,35 @@ msgstr "" "Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " "posílání zpráv." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Toto je špatná IM adresa" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Nelze smazat potvrzení emailu" + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Potvrď zrušení" + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Toto není váš Jabber" +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Adresa byla odstraněna" + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2027,7 +2183,9 @@ msgstr "" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2122,7 +2280,9 @@ msgstr "" msgid "No nickname or ID." msgstr "Žádná přezdívka." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2131,12 +2291,14 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 #, fuzzy msgid "You are not a member of that group." msgstr "Neodeslal jste nám profil" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%1 statusů na %2" @@ -2248,12 +2410,12 @@ msgstr "" msgid "New message" msgstr "" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Žádný obsah!" @@ -2261,7 +2423,7 @@ msgstr "Žádný obsah!" msgid "No recipient specified." msgstr "" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2522,7 +2684,7 @@ msgid "6 or more characters" msgstr "6 a více znaků" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Heslo znovu" @@ -3877,99 +4039,160 @@ msgstr "" msgid "Save site notice" msgstr "Nové sdělení" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "IM nastavení" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "Tato stránka není k dispozici v typu média která přijímáte." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM adresa" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Heslo znovu" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "Žádné telefonní číslo." -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Nastavení" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Nastavení uloženo" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Žádné telefonní číslo." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy 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 "Tento potvrzující kód vám nepatří!" -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Potvrď zrušení" + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Žádné telefonní číslo." + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -5198,10 +5421,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Zrušit" @@ -5278,35 +5499,41 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "Vzdálený profil s nesouhlasícím profilem" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 #, fuzzy msgid "User has no last notice" msgstr "Uživatel nemá profil." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Nelze aktualizovat uživatele" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Nelze aktualizovat uživatele" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Odpovědi na %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5314,207 +5541,211 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 #, fuzzy msgid "You are already a member of that group" msgstr "Již jste přihlášen" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "Nelze přesměrovat na server: %s" -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "%1 statusů na %2" - -#: lib/command.php:373 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "Nelze vytvořit OpenID z: %s" -#: lib/command.php:378 -#, fuzzy, php-format -msgid "%s left group %s" -msgstr "%1 statusů na %2" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, fuzzy, php-format msgid "Fullname: %s" msgstr "Celé jméno" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Odstranit toto oznámení" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Sdělení" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "Problém při ukládání sdělení" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "Odpovědi na %s" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "Problém při ukládání sdělení" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Neodeslal jste nám profil" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Odhlásit" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Neodeslal jste nám profil" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Neodeslal jste nám profil" msgstr[1] "Neodeslal jste nám profil" msgstr[2] "" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Vzdálený odběr" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Vzdálený odběr" msgstr[1] "Vzdálený odběr" msgstr[2] "" -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "Neodeslal jste nám profil" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Neodeslal jste nám profil" msgstr[1] "Neodeslal jste nám profil" msgstr[2] "" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6369,6 +6600,10 @@ msgstr "Žádný takový dokument." msgid "Repeat this notice?" msgstr "Odstranit toto oznámení" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Ano" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6565,47 +6800,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "před pár sekundami" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "asi před minutou" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "asi před %d minutami" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "asi před hodinou" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "asi před %d hodinami" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "asi přede dnem" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "před %d dny" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "asi před měsícem" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "asi před %d mesíci" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 b47c8be78e..56db81a7f3 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:26+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:24+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -79,8 +79,13 @@ msgstr "Geschlossen" msgid "Save access settings" msgstr "Zugangs-Einstellungen speichern" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Speichern" @@ -111,7 +116,7 @@ msgstr "Seite nicht vorhanden" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Unbekannter Benutzer." @@ -355,7 +360,7 @@ msgstr "Keine Nachricht mit dieser ID gefunden." msgid "This status is already a favorite." msgstr "Diese Nachricht ist bereits ein Favorit!" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Konnte keinen Favoriten erstellen." @@ -475,7 +480,7 @@ msgstr "Gruppe nicht gefunden!" msgid "You are already a member of that group." msgstr "Du bist bereits Mitglied dieser Gruppe" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Der Admin dieser Gruppe hat dich gesperrt." @@ -526,17 +531,17 @@ msgid "Invalid token." msgstr "Ungültiges Token." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -569,12 +574,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "Die Anfrage %s wurde gesperrt und widerrufen." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Unerwartete Formulareingabe." @@ -837,27 +845,44 @@ msgstr "" "Benutzer wird gelöscht, dieser kann dich in Zukunft nicht mehr abonnieren " "und bekommt keine @-Antworten." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Nein" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Diesen Benutzer freigeben" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Diesen Benutzer blockieren" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Konnte Blockierungsdaten nicht speichern." @@ -870,8 +895,8 @@ msgstr "Konnte Blockierungsdaten nicht speichern." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Keine derartige Gruppe." @@ -930,16 +955,24 @@ msgstr "Nicht erkannter Adresstyp %s" msgid "That address has already been confirmed." msgstr "Diese Adresse wurde bereits bestätigt." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Konnte E-Mail-Bestätigung nicht löschen." @@ -993,11 +1026,13 @@ msgstr "" "Bist du sicher, dass du dieses Programm löschen willst? Es werden alle Daten " "aus der Datenbank entfernt, auch alle bestehenden Benutzer-Verbindungen." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Dieses Programm nicht löschen" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Programm löschen" @@ -1032,11 +1067,13 @@ msgstr "Notiz löschen" msgid "Are you sure you want to delete this notice?" msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Diese Nachricht nicht löschen" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Nachricht löschen" @@ -1060,7 +1097,8 @@ msgstr "" "Bist du sicher, dass du den Benutzer löschen wisst? Alle Daten des Benutzers " "werden aus der Datenbank gelöscht (ohne ein Backup)." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Diesen Benutzer löschen" @@ -1173,15 +1211,13 @@ msgid "Reset back to default" msgstr "Standard wiederherstellen" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Speichern" @@ -1308,31 +1344,43 @@ msgstr "Konnte keinen Favoriten erstellen." msgid "Options saved." msgstr "Einstellungen gespeichert." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "E-Mail-Einstellungen" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Einstellen, wie und wann du E-Mails von %%site.name%% bekommst." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "E-Mail-Adresse" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Aktuelle bestätigte E-Mail-Adresse." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Entfernen" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1340,110 +1388,145 @@ msgstr "" "Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang " "(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Abbrechen" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "E-Mail-Adresse" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "E-Mail-Adresse, beispielsweise „Benutzername@example.org“" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Hinzufügen" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Eingehende E-Mail" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Schicke ein E-Mail an diese Adresse um eine Nachricht zu posten." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch " "deaktiviert." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Neu" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Einstellungen" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Informiere mich über neues Abonnements per E-Mail." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" "Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Schick mir eine E-Mail, wenn mir jemand eine @Nachricht schickt." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Ich möchte Einträge per E-Mail veröffentlichen." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "MicroID für meine E-Mail-Adresse veröffentlichen." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Einstellungen gesichert." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Design-Einstellungen gespeichert." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Keine E-Mail-Adresse." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ungültige E-Mail-Adresse." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Dies ist bereits deine E-Mail-Adresse." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Konnte keinen Bestätigungscode einfügen." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1452,43 +1535,56 @@ msgstr "" "Überprüfe deinen Posteingang (auch den Spamordner!) für den Code und " "Anweisungen, wie dieser benutzt wird." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Das ist die falsche IM-Adresse." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Bestätigung abgebrochen." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Dies ist nicht deine E-Mail-Adresse." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Die Adresse wurde entfernt." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Keine Eingangs-E-Mail-Adresse." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Konnte Nutzereintrag nicht schreiben" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Eingehende E-Mail-Adresse entfernt" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt." @@ -1681,15 +1777,17 @@ msgstr "" "abschicken und wird auch in Zukunft dieser Gruppe nicht mehr beitreten " "können." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Diesen Benutzerzugang nicht für diese Gruppe blockieren." -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Diesen Nutzer von der Gruppe sperren" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Datenbank Fehler beim Versuch den Nutzer aus der Gruppe zu blockieren." @@ -1873,11 +1971,15 @@ msgstr "Dieser Nutzer ist nicht von der Gruppe gesperrt." msgid "Error removing the block." msgstr "Fehler beim Freigeben des Benutzers." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "IM-Einstellungen" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1886,15 +1988,24 @@ msgstr "" "Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " "senden. Stelle deine Adresse und Einstellungen unten ein." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM ist nicht verfügbar." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IM-Adresse" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1904,11 +2015,9 @@ msgstr "" "sollte in deinem Jabber/GTalk-Konto eingehen. (Hast du %s zu deiner " "Freundesliste hinzugefügt?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "IM-Adresse" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1918,45 +2027,67 @@ msgstr "" "Aber versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM-" "Programm oder GTalk aufgenommen hast." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Einstellungen" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk-Status verändert." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" "GTalk." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Einstellungen gesichert." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Keine Jabber-ID" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Konnte diese Jabber ID nicht normalisieren" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Ungültige Jabber-ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Diese JabberID hast du schon angegeben." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1965,10 +2096,35 @@ msgstr "" "Ein Bestätigungscode wurde an die IM-Adresse geschickt, die du hinzugefügt " "hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Das ist die falsche IM-Adresse." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Konnte E-Mail-Bestätigung nicht löschen." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Bestätigung abgebrochen." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Dies ist nicht deine JabberID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Die Adresse wurde entfernt." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2011,7 +2167,9 @@ msgstr "Lade neue Leute ein" msgid "You are already subscribed to these users:" msgstr "Du hast diese Benutzer bereits abonniert:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2138,7 +2296,9 @@ msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden." msgid "No nickname or ID." msgstr "Kein Benutzername oder ID" -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s ist der Gruppe %2$s beigetreten" @@ -2147,11 +2307,13 @@ msgstr "%1$s ist der Gruppe %2$s beigetreten" msgid "You must be logged in to leave a group." msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Du bist kein Mitglied dieser Gruppe." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s hat die Gruppe %2$s verlassen" @@ -2262,12 +2424,12 @@ msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen." msgid "New message" msgstr "Neue Nachricht" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Kein Inhalt!" @@ -2275,7 +2437,7 @@ msgstr "Kein Inhalt!" msgid "No recipient specified." msgstr "Kein Empfänger angegeben." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2539,7 +2701,7 @@ msgid "6 or more characters" msgstr "6 oder mehr Zeichen" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Bestätigen" @@ -3943,44 +4105,74 @@ msgstr "Systembenachrichtigung (max. 255 Zeichen; HTML erlaubt)" msgid "Save site notice" msgstr "Systemnachricht speichern" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "SMS-Einstellungen" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kannst SMS per E-Mail empfangen von %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS ist nicht verfügbar." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM-Adresse" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Aktuelle für den SMS-Dienst bestätigte Telefonnummer." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Warte auf die Bestätigung dieser Telefonnummer." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Bestätigungscode" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Bestätigen" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "SMS-Telefonnummer" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Einstellungen" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3988,23 +4180,34 @@ msgstr "" "Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei " "meinem Netzbetreiber entstehen können." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Einstellungen gesichert." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Keine Telefonnummer." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Kein Netzanbieter ausgewählt." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Dies ist bereits deine Telefonnummer." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -4013,23 +4216,42 @@ msgstr "" "gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " "den Code und die Anweisungen, um ihn zu benutzen." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Die Bestätigungsnummer ist falsch." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Bestätigung abgebrochen." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Dies ist nicht deine Telefonnummer." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS-Telefonnummer" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Netzanbieter" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Wähle einen Netzanbieter" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4039,7 +4261,8 @@ msgstr "" "Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %" "s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Kein Code eingegeben" @@ -5242,10 +5465,8 @@ msgstr "" "Standardeinstellung dieses Programms: Schreibgeschützt oder Lese/" "Schreibzugriff" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Abbrechen" @@ -5321,34 +5542,40 @@ msgstr "Befehl fehlgeschlagen" msgid "Notice with that id does not exist" msgstr "Nachricht mit dieser ID existiert nicht" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Benutzer hat keine letzte Nachricht" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Konnte keinen lokalen Nutzer mit dem Nick %s finden" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Leider ist dieser Befehl noch nicht implementiert." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Es macht keinen Sinn dich selbst anzustupsen!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Stups an %s geschickt" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5359,57 +5586,55 @@ msgstr "" "Abonnenten: %2$s\n" "Mitteilungen: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Nachricht als Favorit markiert." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Du bist bereits Mitglied dieser Gruppe" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s ist der Gruppe %s beigetreten" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s hat die Gruppe %s verlassen" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Vollständiger Name: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Standort: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Über: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5418,138 +5643,145 @@ msgstr "" "%s ist ein entferntes Profil; man kann direkte Nachrichten nur an Nutzer auf " "dem selben Server senden." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Nachricht zu lang - maximal %d Zeichen erlaubt, du hast %d gesendet" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "" +"Nachricht zu lang - maximal %1$d Zeichen erlaubt, du hast %2$d gesendet." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Direkte Nachricht an %s abgeschickt" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Fehler beim Senden der Nachricht" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Nachricht bereits wiederholt" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Nachricht von %s wiederholt" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Fehler beim Wiederholen der Nachricht" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Nachricht zu lange - maximal %d Zeichen erlaubt, du hast %d gesendet" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Antwort an %s gesendet" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Problem beim Speichern der Nachricht." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "OMB Profile können nicht mit einem Kommando abonniert werden." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "%s abonniert" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "%s nicht mehr abonniert" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Befehl noch nicht implementiert." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Benachrichtigung deaktiviert." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Konnte Benachrichtigung nicht deaktivieren." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Benachrichtigung aktiviert." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Konnte Benachrichtigung nicht aktivieren." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Anmeldung ist abgeschaltet" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Der Link ist nur einmal benutzbar und für eine Dauer von 2 Minuten: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "%s nicht mehr abonniert" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Du hast niemanden abonniert." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du hast diese Benutzer bereits abonniert:" msgstr[1] "Du hast diese Benutzer bereits abonniert:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Niemand hat Dich abonniert." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Die Gegenseite konnte Dich nicht abonnieren." msgstr[1] "Die Gegenseite konnte Dich nicht abonnieren." -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Du bist in keiner Gruppe Mitglied." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du bist Mitglied dieser Gruppe:" msgstr[1] "Du bist Mitglied dieser Gruppen:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6493,6 +6725,10 @@ msgstr "Kein id Argument." msgid "Repeat this notice?" msgstr "Diese Nachricht wiederholen?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Ja" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Diese Nachricht wiederholen" @@ -6679,47 +6915,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "vor einer Minute" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "vor %d Minuten" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "vor einer Stunde" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "vor %d Stunden" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "vor einem Tag" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "vor %d Tagen" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "vor einem Monat" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "vor %d Monaten" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 17a78c4566..e449fbac9c 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:29+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:27+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -74,8 +74,13 @@ msgstr "Κλειστό" msgid "Save access settings" msgstr "Αποθήκευση ρυθμίσεων πρόσβασης" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Αποθήκευση" @@ -106,7 +111,7 @@ msgstr "Δεν υπάρχει τέτοια σελίδα" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Κανένας τέτοιος χρήστης." @@ -343,7 +348,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "" @@ -465,7 +470,7 @@ msgstr "Η ομάδα δεν βρέθηκε!" msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -517,17 +522,17 @@ msgid "Invalid token." msgstr "Μήνυμα" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -560,12 +565,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "" @@ -821,28 +829,45 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Όχι" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Ναι" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -855,8 +880,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 #, fuzzy msgid "No such group." msgstr "Αδύνατη η αποθήκευση του προφίλ." @@ -916,16 +941,24 @@ msgstr "" msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." @@ -982,12 +1015,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Περιγράψτε την ομάδα ή το θέμα" @@ -1022,12 +1057,14 @@ msgstr "Διαγραφή μηνύματος" msgid "Are you sure you want to delete this notice?" msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1050,7 +1087,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Διαγράψτε αυτόν τον χρήστη" @@ -1164,15 +1202,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1308,32 +1344,44 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Options saved." msgstr "" -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Ρυθμίσεις Email" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Διεύθυνση" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Διευθύνσεις email" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +msgctxt "BUTTON" msgid "Remove" msgstr "" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 #, fuzzy msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " @@ -1342,107 +1390,140 @@ msgstr "" "Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το " "φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Ακύρωση" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "Διευθύνσεις email" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Προσθήκη" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Εισερχόμενο email" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +msgctxt "BUTTON" msgid "New" msgstr "" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Προτιμήσεις" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1451,43 +1532,56 @@ msgstr "" "προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " "αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "" +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." +msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Η επιβεβαίωση ακυρώθηκε." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "" +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." +msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1677,15 +1771,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1858,28 +1954,42 @@ msgstr "" msgid "Error removing the block." msgstr "" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "Ρυθμίσεις ΙΜ" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "Διεύθυνση ΙΜ" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, fuzzy, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1889,55 +1999,74 @@ msgstr "" "λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη " "λίστα φίλων?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "Διεύθυνση ΙΜ" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Προτιμήσεις" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Οι προτιμήσεις αποθηκεύτηκαν" + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Αδυναμία κανονικοποίησης του Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1946,10 +2075,35 @@ msgstr "" "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. " "Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Η επιβεβαίωση ακυρώθηκε." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "" +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1990,7 +2144,9 @@ msgstr "" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2084,7 +2240,9 @@ msgstr "" msgid "No nickname or ID." msgstr "Μήνυμα" -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2093,11 +2251,13 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "" @@ -2209,12 +2369,12 @@ msgstr "" msgid "New message" msgstr "" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "" @@ -2222,7 +2382,7 @@ msgstr "" msgid "No recipient specified." msgstr "" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2478,7 +2638,7 @@ msgid "6 or more characters" msgstr "6 ή περισσότεροι χαρακτήρες" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Επιβεβαίωση" @@ -3827,68 +3987,109 @@ msgstr "" msgid "Save site notice" msgstr "Ρυθμίσεις OpenID" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "Ρυθμίσεις ΙΜ" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Διεύθυνση ΙΜ" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κινητού τηλεφώνου." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Επιβεβαίωση" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Προτιμήσεις" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Οι προτιμήσεις αποθηκεύτηκαν" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -3898,30 +4099,49 @@ msgstr "" "προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " "αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Η επιβεβαίωση ακυρώθηκε." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +msgid "The SMS phone number was removed." +msgstr "" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -5108,10 +5328,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Ακύρωση" @@ -5186,34 +5404,40 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5221,200 +5445,204 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 #, fuzzy msgid "You are already a member of that group" msgstr "Ομάδες με τα περισσότερα μέλη" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "ομάδες των χρηστών %s" - -#: lib/command.php:373 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: lib/command.php:378 -#, fuzzy, php-format -msgid "%s left group %s" -msgstr "ομάδες των χρηστών %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, fuzzy, php-format msgid "Fullname: %s" msgstr "Ονοματεπώνυμο" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Ρυθμίσεις OpenID" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Απέτυχε η συνδρομή." -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Δεν είστε μέλος καμίας ομάδας." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Ομάδες με τα περισσότερα μέλη" msgstr[1] "Ομάδες με τα περισσότερα μέλη" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6247,6 +6475,10 @@ msgstr "" msgid "Repeat this notice?" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Ναι" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6439,47 +6671,57 @@ msgctxt "role" msgid "Moderator" msgstr "Συντονιστής" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 c8c06c174d..fd16a8bf71 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:33+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:30+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 (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -74,8 +74,13 @@ msgstr "Closed" msgid "Save access settings" msgstr "Save access settings" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -107,7 +112,7 @@ msgstr "No such page" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No such user." @@ -350,7 +355,7 @@ msgstr "No status found with that ID." msgid "This status is already a favorite." msgstr "This status is already a favourite." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Could not create favourite." @@ -467,7 +472,7 @@ msgstr "Group not found!" msgid "You are already a member of that group." msgstr "You are already a member of that group." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "You have been blocked from that group by the admin." @@ -518,17 +523,17 @@ msgid "Invalid token." msgstr "Invalid token." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -561,12 +566,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "The request token %s has been denied and revoked." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Unexpected form submission." @@ -825,27 +833,44 @@ msgstr "" "unsubscribed from you, unable to subscribe to you in the future, and you " "will not be notified of any @-replies from them." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Do not block this user" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Block this user" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Failed to save block information." @@ -858,8 +883,8 @@ msgstr "Failed to save block information." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "No such group." @@ -918,16 +943,24 @@ msgstr "Unrecognised address type %s" msgid "That address has already been confirmed." msgstr "That address has already been confirmed." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Couldn't update user." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Couldn't delete e-mail confirmation." @@ -982,11 +1015,13 @@ msgstr "" "about the application from the database, including all existing user " "connections." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Do not delete this application" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Delete this application" @@ -1021,11 +1056,13 @@ msgstr "Delete notice" msgid "Are you sure you want to delete this notice?" msgstr "Are you sure you want to delete this notice?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Do not delete this notice" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Delete this notice" @@ -1049,7 +1086,8 @@ msgstr "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Delete this user" @@ -1162,15 +1200,13 @@ msgid "Reset back to default" msgstr "Reset back to default" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Save" @@ -1296,31 +1332,43 @@ msgstr "Could not create aliases" msgid "Options saved." msgstr "Options saved." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "E-mail settings" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Manage how you get e-mail from %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Address" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "E-mail address" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Current confirmed e-mail address." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Remove" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1328,106 +1376,141 @@ msgstr "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "E-mail address" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mail address, like \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Add" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Incoming e-mail" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Send e-mail to this address to post new notices." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Make a new e-mail address for posting to - cancels the old one." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "New" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferences" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Send me notices of new subscriptions through e-mail." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Send me e-mail when someone adds my notice as a favourite." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Send me e-mail when someone sends me a private message." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send me e-mail when someone sends me an \"@-reply\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Allow friends to nudge me and send me an e-mail." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "I want to post notices by e-mail." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publish a MicroID for my e-mail address." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Design preferences saved." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "No e-mail address." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Cannot normalise that e-mail address" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Not a valid e-mail address." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "That is already your e-mail address." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "That e-mail address already belongs to another user." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Couldn't insert confirmation code." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1435,43 +1518,56 @@ msgstr "" "A confirmation code was sent to the e-mail address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "No pending confirmation to cancel." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "That is the wrong IM address." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Confirmation cancelled." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "That is not your e-mail address." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "The address was removed." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "No incoming e-mail address." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Couldn't update user record." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Incoming e-mail address removed." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "New incoming e-mail address added." @@ -1665,15 +1761,17 @@ msgstr "" "will be removed from the group, unable to post and unable to subscribe to " "the group in the future." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Do not block this user from this group" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Block this user from this group" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Database error blocking user from group." @@ -1851,11 +1949,15 @@ msgstr "User is not blocked from group." msgid "Error removing the block." msgstr "Error removing the block." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "IM settings" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1864,28 +1966,35 @@ msgstr "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM is not available." -#: actions/imsettings.php:106 -msgid "Current confirmed Jabber/GTalk address." -msgstr "Current confirmed Jabber/GTalk address." - -#: 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 "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" - -#: actions/imsettings.php:124 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 msgid "IM address" msgstr "IM address" -#: actions/imsettings.php:126 +#: actions/imsettings.php:113 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Current confirmed Jabber/GTalk address." + +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 +#, 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 "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" + +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1894,44 +2003,66 @@ msgstr "" "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." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferences" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Send me notices through Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Send me replies through Jabber/GTalk from people I'm not subscribed to." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publish a MicroID for my Jabber/GTalk address." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Preferences saved." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "No Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Cannot normalise Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Not a valid Jabber ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "That is already your Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID already belongs to another user." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1940,10 +2071,35 @@ msgstr "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "That is the wrong IM address." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Couldn't delete e-mail confirmation." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Confirmation cancelled." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "That is not your Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "The address was removed." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1984,7 +2140,9 @@ msgstr "Invite new users" msgid "You are already subscribed to these users:" msgstr "You are already subscribed to these users:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2108,7 +2266,9 @@ msgstr "You must be logged in to join a group." msgid "No nickname or ID." msgstr "No nickname or ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s joined group %2$s" @@ -2117,11 +2277,13 @@ msgstr "%1$s joined group %2$s" msgid "You must be logged in to leave a group." msgstr "You must be logged in to leave a group." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "You are not a member of that group." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s left group %2$s" @@ -2231,12 +2393,12 @@ msgstr "Use this form to create a new group." msgid "New message" msgstr "New message" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "You can't send a message to this user." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "No content!" @@ -2244,7 +2406,7 @@ msgstr "No content!" msgid "No recipient specified." msgstr "No recipient specified." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2500,7 +2662,7 @@ msgid "6 or more characters" msgstr "6 or more characters" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirm" @@ -3867,45 +4029,75 @@ msgstr "" msgid "Save site notice" msgstr "Site notice" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "SMS settings" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "You can receive SMS messages through e-mail from %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "This page is not available in a " -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM address" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Current confirmed SMS-enabled phone number." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Awaiting confirmation on this phone number." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Confirmation code" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Enter the code you received on your phone." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirm" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "SMS phone number" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Phone number, no punctuation or spaces, with area code" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferences" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3913,23 +4105,34 @@ msgstr "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Preferences saved." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "No phone number." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "No carrier selected." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "That is already your phone number." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "That phone number already belongs to another user." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3937,23 +4140,42 @@ msgstr "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "That is the wrong confirmation number." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Confirmation cancelled." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "That is not your phone number." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS phone number" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Mobile carrier" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Select a carrier" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -3962,7 +4184,8 @@ msgstr "" "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." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "No code entered" @@ -5162,10 +5385,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancel" @@ -5239,34 +5460,40 @@ msgstr "Command failed" msgid "Notice with that id does not exist" msgstr "Notice with that id does not exist" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "User has no last notice" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Could not find a user with nickname %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Could not find a user with nickname %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Sorry, this command is not yet implemented." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Nudge sent to %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5274,196 +5501,200 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Notice marked as fave." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "You are already a member of that group." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Could not join user %s to group %s." +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Could not join user %1$s to group %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s joined group %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Could not remove user %s to group %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s left group %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Fullname: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Location: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "About: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "Message too long - maximum is %1$d characters, you sent %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Direct message to %s sent" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Error sending direct message." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Cannot repeat your own notice." -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Already repeated that notice." -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Notice from %s repeated" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Error repeating notice." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Notice too long - maximum is %d characters, you sent %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Reply to %s sent" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Error saving notice." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Specify the name of the user to subscribe to" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "You are not subscribed to that profile." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Subscribed to %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Specify the name of the user to unsubscribe from" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Unsubscribed from %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Command not yet implemented." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notification off." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Can't turn off notification." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notification on." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Can't turn on notification." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Unsubscribed %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "You are not subscribed to anyone." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "You are already subscribed to these users:" msgstr[1] "You are already subscribed to these users:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "No one is subscribed to you." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Could not subscribe other to you." msgstr[1] "Could not subscribe other to you." -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "You are not a member of any groups." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "You are not a member of that group." msgstr[1] "You are not a member of that group." -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6304,6 +6535,10 @@ msgstr "No return-to arguments." msgid "Repeat this notice?" msgstr "Repeat this notice?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Yes" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Repeat this notice" @@ -6492,47 +6727,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "a few seconds ago" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "about a minute ago" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "about %d minutes ago" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "about an hour ago" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "about %d hours ago" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "about a day ago" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "about %d days ago" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "about a month ago" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "about %d months ago" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 f714ea20ff..117947d5aa 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:36+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:33+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -76,8 +76,13 @@ msgstr "Cerrado" msgid "Save access settings" msgstr "Guardar la configuración de acceso" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Guardar" @@ -107,7 +112,7 @@ msgstr "No existe tal página." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No existe ese usuario." @@ -348,7 +353,7 @@ msgstr "No se encontró estado para ese ID" msgid "This status is already a favorite." msgstr "Este status ya está en favoritos." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "No se pudo crear favorito." @@ -466,7 +471,7 @@ msgstr "Grupo no encontrado." msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Has sido bloqueado de ese grupo por el administrador." @@ -517,17 +522,17 @@ msgid "Invalid token." msgstr "Token inválido." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -563,12 +568,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "El token de solicitud %2 ha sido denegado y revocado." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." @@ -828,27 +836,44 @@ msgstr "" "desuscribirá de tu cuenta, no podrá suscribirse a ella en el futuro y no se " "te notificará de ninguna de sus respuestas @." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "No bloquear a este usuario" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Sí" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario." -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "No se guardó información de bloqueo." @@ -861,8 +886,8 @@ msgstr "No se guardó información de bloqueo." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "No existe ese grupo." @@ -922,16 +947,24 @@ msgstr "Tipo de dirección %s desconocida." msgid "That address has already been confirmed." msgstr "Esa dirección ya fue confirmada." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "No se pudo actualizar el usuario." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "No se pudo eliminar la confirmación de correo electrónico." @@ -986,11 +1019,13 @@ msgstr "" "los datos acerca de la aplicación de la base de datos, incluyendo todas las " "conexiones de usuario existente." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "No eliminar esta aplicación" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Borrar esta aplicación" @@ -1025,11 +1060,13 @@ msgstr "Borrar aviso" msgid "Are you sure you want to delete this notice?" msgstr "¿Estás seguro de que quieres eliminar este aviso?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "No eliminar este mensaje" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Borrar este aviso" @@ -1053,7 +1090,8 @@ msgstr "" "¿Realmente deseas eliminar este usuario? Esto borrará de la base de datos " "todos los datos sobre el usuario, sin dejar una copia de seguridad." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Borrar este usuario" @@ -1166,15 +1204,13 @@ msgid "Reset back to default" msgstr "Volver a los valores predeterminados" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" @@ -1300,31 +1336,43 @@ msgstr "No fue posible crear alias." msgid "Options saved." msgstr "Se guardó Opciones." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Configuración del correo electrónico" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Gestiona la forma en que recibes correo desde %%site.name%%" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Dirección" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Dirección de correo electrónico" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Actual dirección de correo electrónico confirmada" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Eliminar" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1332,109 +1380,144 @@ msgstr "" "Esperando confirmación de esta dirección. Revisa tu bandeja de entrada (¡y " "la de spam!) por un mensaje con las instrucciones." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Dirección de correo electrónico" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Correo electrónico, como \"NombredeUsuario@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Añadir" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correo entrante" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Envie emails a esta dirección para ingresar nuevos avisos" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Hace una nueva dirección de correo para postear; cancela la anterior." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nuevo" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferencias" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Enviarme avisos de suscripciones nuevas por correo." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" "Enviarme un correo electrónico cuando alguien me envía un mensaje privado." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" "Enviarme un correo electrónico cuando alguien me envíe una \"@-respuesta\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir que amigos me contacten y envién un correo." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Deseo enviar estados por email" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publicar un MicroID para mi dirección de correo." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferencias guardadas." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Preferencias de diseño guardadas." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Sin dirección de correo electrónico" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 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 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correo electrónico no válido" -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Esa ya es tu dirección de correo electrónico" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Esa dirección de correo pertenece a otro usuario." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "No se pudo insertar el código de confirmación." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1443,43 +1526,56 @@ msgstr "" "Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " "instrucciones sobre cómo usarlo." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ninguna confirmación pendiente para cancelar." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Esa dirección de mensajería instantánea es incorrecta." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Confirmación cancelada." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Esa no es tu dirección de correo electrónico" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "La dirección fue eliminada." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "No hay dirección de correo entrante." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "No se pudo actualizar información de usuario." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Dirección de correo entrante removida." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nueva dirección de correo entrante agregada." @@ -1670,15 +1766,17 @@ msgstr "" "eliminará del grupo y no podrá publicar ni suscribirse al grupo en lo " "sucesivo." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "No bloquear este usuario de este grupo" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Bloquear este usuario de este grupo" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" "Se ha producido un error en la base de datos al bloquear el usuario del " @@ -1863,11 +1961,15 @@ msgstr "El usuario no está bloqueado del grupo." msgid "Error removing the block." msgstr "Se ha producido un error al eliminar el bloque." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Configuración de mensajería instantánea" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1876,15 +1978,24 @@ msgstr "" "Puedes enviar y recibir avisos vía [mensajes instantáneos](%%doc.im%%) de " "Jabber/GTalk. Configura tu dirección y opciones abajo." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "La mensajería instantánea no está disponible." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Dirección de mensajería instantánea" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Dirección actual Jabber/Gtalk confirmada." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1894,11 +2005,9 @@ msgstr "" "Jabber/GTalk un mensaje con más instrucciones. (¿Has añadido a %s a tu lista " "de amigos?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Dirección de mensajería instantánea" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1908,44 +2017,66 @@ msgstr "" "Primero, asegúrate de agregar a %s a tu lista de amigos en tu cliente de " "mensajería instantánea o en GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferencias" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme avisos por Jabber/GTalk" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envirame respuestas por medio de Jabber/GTalk de gente a la cual no sigo." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar un MicroID para mi cuenta Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Preferencias guardadas." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Ningún Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "No se puede normalizar este Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Jabber ID no válido" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Ese ya es tu Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "El Jabber ID ya pertenece a otro usuario." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1955,10 +2086,35 @@ msgstr "" "instantánea que agregaste. Debes aprobar a %s para que pueda enviarte " "mensajes." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Esa dirección de mensajería instantánea es incorrecta." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "No se pudo eliminar la confirmación de correo electrónico." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Confirmación cancelada." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Ese no es tu Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "La dirección fue eliminada." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2000,7 +2156,9 @@ msgstr "Invitar nuevos usuarios:" msgid "You are already subscribed to these users:" msgstr "Ya estás suscrito a estos usuarios:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2123,7 +2281,9 @@ msgstr "Debes estar conectado para unirte a un grupo." msgid "No nickname or ID." msgstr "Ningún nombre de usuario o ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s se ha unido al grupo %2$" @@ -2132,11 +2292,13 @@ msgstr "%1$s se ha unido al grupo %2$" msgid "You must be logged in to leave a group." msgstr "Debes estar conectado para dejar un grupo." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "No eres miembro de este grupo." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ha dejado el grupo %2$s" @@ -2248,12 +2410,12 @@ msgstr "Usa este formulario para crear un grupo nuevo." msgid "New message" msgstr "Nuevo Mensaje " -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "No puedes enviar mensaje a este usuario." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "¡Ningún contenido!" @@ -2261,7 +2423,7 @@ msgstr "¡Ningún contenido!" msgid "No recipient specified." msgstr "No se especificó receptor." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." @@ -2521,7 +2683,7 @@ msgid "6 or more characters" msgstr "6 o más caracteres" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirmar" @@ -3922,45 +4084,75 @@ msgstr "" msgid "Save site notice" msgstr "Guardar el aviso del sitio" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Configuración de SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS no está disponible." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Dirección de mensajería instantánea" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Actual número telefónico para SMS confirmado." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Esperando confirmación de este número de teléfono." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Código de confirmación" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Ingrese el código recibido en su teléfono" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Número de teléfono de SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferencias" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3968,23 +4160,34 @@ msgstr "" "Enviarme avisos por SMS; Yo acepto que puede incurrir en grandes cobros por " "mi operador móvil" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Preferencias guardadas." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Sin número telefónico" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "No se seleccionó un operador móvil." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Ese ya es tu número telefónico" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Ese número telefónico ya pertenece a otro usuario" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3993,23 +4196,42 @@ msgstr "" "Revisa tu teléfono para encontrar el código y las instrucciones acerca de " "cómo usarlo." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Ese no es el número de confirmación" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Confirmación cancelada." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Ese no es tu número telefónico" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Número de teléfono de SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Operador de telefonía móvil" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Seleccione un operador móvil" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4019,7 +4241,8 @@ msgstr "" "sobre correo electrónico pero no está listado aquí, envíanos un correo para " "informarnos al %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "No ingresó código" @@ -5220,10 +5443,8 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -5299,35 +5520,41 @@ msgstr "Comando falló" msgid "Notice with that id does not exist" msgstr "No existe ningún mensaje con ese id" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Usuario no tiene último aviso" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "No se pudo encontrar a nadie con el nombre de usuario %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "" "No se pudo encontrar a ningún usuario local con el nombre de usuario %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Disculpa, todavía no se implementa este comando." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "¡No tiene sentido darte un toque a ti mismo!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "zumbido enviado a %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5338,57 +5565,55 @@ msgstr "" "Suscriptores: %2$s\n" "Avisos: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Aviso marcado como favorito." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Ya eres parte de ese grupo" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" msgstr "No se pudo unir el usuario %s al grupo %s" -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s se unió a grupo %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "No se pudo eliminar al usuario %s del grupo %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s dejó grupo %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Nombre completo: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Lugar: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Página de inicio: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5397,139 +5622,145 @@ msgstr "" "%s es un perfil remoto: sólo puedes enviarle mensajes directos a usuarios en " "el mismo servidor." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Mensaje muy largo - el máximo es de %d caracteres. Has enviado %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "Mensaje muy largo - máximo %1$d caracteres, enviaste %2$d" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Se envió mensaje directo a %s" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Error al enviar mensaje directo." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "No puedes repetir tu propio aviso" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Ya has repetido este aviso" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Aviso de %s repetido" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Ha habido un error al repetir el aviso." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Mensaje muy largo - el máximo es de %d caracteres. Has enviado %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Responder a %s enviados" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Error al guardar el aviso." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Especificar el nombre del usuario a suscribir" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "No te puedes suscribir a perfiles de OMB por orden." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Suscrito a %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Especificar el nombre del usuario para desuscribirse de" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Desuscrito de %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Todavía no se implementa comando." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notificación no activa." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "No se puede desactivar notificación." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notificación activada." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "No se puede activar notificación." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "El comando de inicio de sesión está desactivado" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Este enlace es utilizable solamente una vez y sólo válido por 2 minutos: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Desuscrito de %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "No estás suscrito a nadie." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ya estás suscrito a estos usuarios:" msgstr[1] "Ya estás suscrito a estos usuarios:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Nadie está suscrito a ti." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "No se pudo suscribir otro a ti." msgstr[1] "No se pudo suscribir otro a ti." -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "No eres miembro de ningún grupo" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Eres miembro de este grupo:" msgstr[1] "Eres miembro de estos grupos:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6388,6 +6619,10 @@ msgstr "No hay respuesta a los argumentos." msgid "Repeat this notice?" msgstr "Responder este aviso?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Sí" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Responder este aviso." @@ -6577,47 +6812,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "hace unos segundos" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "hace un minuto" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "hace %d minutos" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "hace una hora" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "hace %d horas" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "hace un día" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "hace %d días" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "hace un mes" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "hace %d meses" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 db5deb6e32..00af27de49 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-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:52+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:39+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title @@ -75,8 +75,13 @@ msgstr "مسدود" msgid "Save access settings" msgstr "ذخیره‌ی تنظیمات دسترسی" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "ذخیره" @@ -107,7 +112,7 @@ msgstr "چنین صفحه‌ای وجود ندارد" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "چنین کاربری وجود ندارد." @@ -344,7 +349,7 @@ msgstr "هیچ وضعیتی با آن شناسه پیدا نشد." msgid "This status is already a favorite." msgstr "این پیغام را پیش‌تر به علایق خود اضافه کرده‌اید" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "نمی‌توان وضعیت را موردعلاقه کرد." @@ -461,7 +466,7 @@ msgstr "گروه یافت نشد!" msgid "You are already a member of that group." msgstr "شما از پیش یک عضو این گروه هستید." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "دسترسی شما به گروه توسط مدیر آن محدود شده است." @@ -513,17 +518,17 @@ msgid "Invalid token." msgstr "اندازه‌ی نادرست" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -555,12 +560,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "ارسال غیر قابل انتظار فرم." @@ -821,27 +829,44 @@ msgstr "" "دنبال کند. همچنین دیگر شما از پیام‌هایی که در آن از شما یاد می‌کند با خبر " "نخواهید شد" -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "خیر" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "کاربر را مسدود نکن" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "بله" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "کاربر را مسدود کن" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -854,8 +879,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "چنین گروهی وجود ندارد." @@ -914,16 +939,24 @@ msgstr "نوع نشانی نامشخص است %s" msgid "That address has already been confirmed." msgstr "آن نشانی در حال حاضر تصدیق شده است." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "نمی‌توان کاربر را به روز کرد." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." @@ -983,12 +1016,14 @@ msgstr "" "آیا مطمئن هستید که می‌خواهید این کاربر را پاک کنید؟ با این کار تمام اطلاعات " "پاک و بدون برگشت خواهند بود." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "این پیام را پاک نکن" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "این پیام را پاک کن" @@ -1024,11 +1059,13 @@ msgstr "پیام را پاک کن" msgid "Are you sure you want to delete this notice?" msgstr "آیا اطمینان دارید که می‌خواهید این پیام را پاک کنید؟" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "این پیام را پاک نکن" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -1052,7 +1089,8 @@ msgstr "" "آیا مطمئن هستید که می‌خواهید این کاربر را پاک کنید؟ با این کار تمام اطلاعات " "پاک و بدون برگشت خواهند بود." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "حذف این کاربر" @@ -1165,15 +1203,13 @@ msgid "Reset back to default" msgstr "برگشت به حالت پیش گزیده" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "ذخیره‌کردن" @@ -1309,139 +1345,186 @@ msgstr "نمی‌توان نام‌های مستعار را ساخت." msgid "Options saved." msgstr "گزینه‌ها ذخیره شدند." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "تنظیمات پست الکترونیک" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "چگونگی دریافت نامه از %%site.name%% را اداره کنید." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "نشانی" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "نشانی‌های پست الکترونیکی" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "نشانی پست الکترونیکی تایید شدهٔ کنونی" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "حذف" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "انصراف" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "نشانی‌های پست الکترونیکی" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "نشانی پست الکترونیکی، مانند «UserName@example.org»" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "افزودن" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "پست الکترونیک ورودی" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "برای ارسال پیام با استفاده از پست الکترونیک به این نشانی نامه بفرستید." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "نشانی جدید برای ارسال پیام ایجاد کن؛ نشانی قبلی فسخ می‌شود." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "جدید" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "ترجیحات" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "پیام‌های کسانی را که به تازگی دنبال می‌کنم با پست الکترونیک برایم بفرست." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "هر وقت کسی پیام های مرا دوست داشتنی کرد، مرا با پست اکترونیک با خبر کن." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "هر وقت کسی برای من پیام خصوصی فرستاد، مرا با پست الکترونیک با خبر کن." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "هر وقت کسی از من در پیام خود یاد کرد، مرا با پست الکترونیک با خبر کن." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "اجازه بده دوستان توجه مرا جذب کنند و به من نامه بفرستند." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "می‌خواهم با نامه پیام ارسال کنم." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "یک شناسه برای پست الکترونیک من منتشر کن." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "تنظیمات ذخیره شد." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "ترجیحات طرح ذخیره شد." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "پست الکترونیک وجود ندارد." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "نمی‌توان نشانی را قانونی کرد" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "یک آدرس ایمیل معتبر نیست." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "هم اکنون نشانی شما همین است." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "این نشانی در حال حاضر متعلق به فرد دیگری است." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "نمی‌توان کد تایید را اضافه کرد." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1449,43 +1532,56 @@ msgstr "" "کد تایید به نشانی شما ارسال شد. نامه های خود را بررسی کنید برای کد تایید و " "راه استفاده." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "هیچ تاییدی برای فسخ کردن وجود ندارد." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "نشانی پیام رسان اشتباه است." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "تایید فسخ شد." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "آن نشانی شما نیست." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "نشانی پاک شده است." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "هیچ نشانی ورودی وجود ندارد." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "نمی‌توان اطلاعات کاربر را به روز کرد." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "نشانی ورودی پاک شد." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "نشانی ورودی جدید اضافه شد." @@ -1675,15 +1771,17 @@ msgid "" "the group in the future." msgstr "آیا مطمئن هستید می‌خواهید دسترسی »%s« را به گروه »%s« مسدود کنید؟" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "دسترسی کاربر به گروه را مسدود نکن" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "دسترسی کاربر را به گروه مسدود کن" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "اشکال پایگاه داده در مسدود کردن کاربر" @@ -1860,12 +1958,16 @@ msgstr "کاربر از گروه منع نشده است." msgid "Error removing the block." msgstr "اشکال در پاکسازی" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "تنظیمات پیام‌رسان فوری" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1874,15 +1976,25 @@ msgstr "" "شما می‌توانید پیام‌های خود را با استفاده از [پیام‌رسان‌های](%%doc.im%%) Jabber " "یا Gtalk ارسال/دریافت کنید. نشانی خود را در این قسمت تنظیم کنید" -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "پیام‌رسان فوری در دسترس نیست." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "نشانی پیام‌رسان فوری" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "نشانی Jabber/GTalk تایید شده کنونی" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1891,12 +2003,9 @@ msgstr "" "منتظر تایید این نشانی هستیم. لطفا Jabber/Gtalk خود را برای دریافت توضیحات " "بیش‌تر بررسی کنید. (آیا %s را به فهرست خود اضافه کرده اید؟) " -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "نشانی پیام‌رسان فوری" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1905,44 +2014,66 @@ msgstr "" "نشانی Jabber یا GTalk، مانند «UserName@example.org». ابتدا از اضافه کردن %s " "به فهرست دوستان خود در کارگیر پیام‌رسان فوری‌تان یا در GTalk مطمئن شوید." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "ترجیحات" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "آگهی‌ها را از راه Jabber/GTalk برای من بفرست." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "هر وقت که وضعیت Jabber/Gtalk من فرق کرد، یک پیام ارسال کن." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "جواب کسانی که من آن ها را دنبال نمی‌کنم را با Jabber/Gtalk برایم ارسال کن." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "یک شناسه‌ی کوچک برای Jabber/Gtalk من منتشر کن." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "تنظیمات ذخیره شد." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "هیچ شناسهٔ Jabber ای وجود ندارد." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "نمی‌توان شناسه‌ی Jabber را تایید کرد" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "شناسه‌ی Jabber درست نیست" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "این شناسه Jabber کنونی شماست." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "شناسه Jabber به یک کاربر دیگر مربوط است." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1951,10 +2082,35 @@ msgstr "" "کد تایید به پیام‌رسان شما ارسال شد. شما باید %s را تایید کنید تا پیام‌ها به " "شما ارسال شود." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "نشانی پیام رسان اشتباه است." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "تایید فسخ شد." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "این شناسه‌ی Jabber شما نیست." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "نشانی پاک شده است." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -1995,7 +2151,9 @@ msgstr "دعوت کردن کاربران تازه" msgid "You are already subscribed to these users:" msgstr "هم اکنون شما این کاربران را دنبال می‌کنید: " -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2093,7 +2251,9 @@ msgstr "برای پیوستن به یک گروه، باید وارد شده با msgid "No nickname or ID." msgstr "بدون لقب." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "ملحق شدن به گروه" @@ -2102,11 +2262,13 @@ msgstr "ملحق شدن به گروه" msgid "You must be logged in to leave a group." msgstr "برای ترک یک گروه، شما باید وارد شده باشید." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "شما یک کاربر این گروه نیستید." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s گروه %s را ترک کرد." @@ -2220,12 +2382,12 @@ msgstr "از این فرم برای ساختن یک گروه جدید استفا msgid "New message" msgstr "پیام جدید" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "شما نمی توانید به این کاربر پیام بفرستید." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "بدون محتوا!" @@ -2233,7 +2395,7 @@ msgstr "بدون محتوا!" msgid "No recipient specified." msgstr "هیچ گیرنده ای مشخص نشده" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "یک پیام را به خودتان نفرستید؛ در عوض آن را آهسته برای خود بگویید." @@ -2499,7 +2661,7 @@ msgid "6 or more characters" msgstr "۶ نویسه یا بیش‌تر" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "تایید" @@ -3833,68 +3995,109 @@ msgstr "" msgid "Save site notice" msgstr "خبر سایت" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "تنظیمات پیام‌رسان فوری" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "نشانی پیام‌رسان فوری" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "منتظر تاییدیه برای این شماره تلفن." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "کد تاییدیه" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "کدی را که در گوشیتان گرفتید وارد کنید." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "تایید" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "شماره تماس پیامک" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "شماره تلفن، بدون نشانه گذاری یا فاصله، با کد منطقه" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "ترجیحات" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "تنظیمات ذخیره شد." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "بدون شماره تلفن." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "آن قبلا شماره تلفن شما بوده است." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "أن شماره تلفن پیش از این به کاربر دیگری تعلق داشته است." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3902,30 +4105,50 @@ msgstr "" "یک کد تاییدیه به شماره تلفنی که شما وارد کردید ارسال شد. گوشیتان را بررسی " "کنید برای کد و دستورالعمل چگونگی استفاده از آن." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "آن کد تاییدیه ی نادرست است." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "تایید فسخ شد." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "آن شماره تلفن شما نیست." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "شماره تماس پیامک" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "امواج موبایل" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "کدی وارد نشد" @@ -5108,10 +5331,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "انصراف" @@ -5187,34 +5408,40 @@ msgstr "فرمان شکست خورد" msgid "Notice with that id does not exist" msgstr "خبری با این مشخصه ایجاد نشد" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "کاربر آگهی آخر ندارد" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "پیدا نشد %s کاریری یا نام مستعار" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "پیدا نشد %s کاریری یا نام مستعار" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "متاسفانه این دستور هنوز اجرا نشده." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "فرتادن اژیر" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5225,197 +5452,201 @@ msgstr "" "مشترک : %2$s\n" "خبر : %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "شما از پیش یک عضو این گروه هستید." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" msgstr "عضویت %s در گروه %s نا موفق بود." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "ملحق شدن به گروه" - -#: lib/command.php:373 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "خارج شدن %s از گروه %s نا موفق بود" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s گروه %s را ترک کرد." - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "نام کامل : %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "موقعیت : %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "صفحه خانگی : %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "درباره ی : %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" "پیغام بسیار طولانی است - بیشترین اندازه امکان پذیر %d کاراکتر است , شما %d " "تا فرستادید" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "پیام مستقیم به %s فرستاده شد." -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "خطا در فرستادن پیام مستقیم." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "نمی توان آگهی خودتان را تکرار کرد" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "آن آگهی قبلا تکرار شده است." -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "آگهی تکرار شد" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "خطا هنگام تکرار آگهی." -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" "پیغام بسیار طولانی است - بیشترین اندازه امکان پذیر %d کاراکتر است , شما %d " "تا فرستادید" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "به این آگهی جواب دهید" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "خطا هنگام ذخیره ی آگهی" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "شما به این پروفيل متعهد نشدید" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "دستور هنوز اجرا نشده" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "ناتوان در خاموش کردن آگاه سازی." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "آگاه سازی فعال است." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "ناتوان در روشن کردن آگاه سازی." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "فرمان ورود از کار افتاده است" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "مشترک‌ها" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "شما توسط هیچ کس تصویب نشده اید ." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "هم اکنون شما این کاربران را دنبال می‌کنید: " -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "هیچکس شما را تایید نکرده ." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "هیچکس شما را تایید نکرده ." -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "شما در هیچ گروهی عضو نیستید ." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "شما یک عضو این گروه نیستید." -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6250,6 +6481,10 @@ msgstr "" msgid "Repeat this notice?" msgstr "به این آگهی جواب دهید" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "بله" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "" @@ -6437,47 +6672,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "چند ثانیه پیش" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "حدود %d دقیقه پیش" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "حدود %d ساعت پیش" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "حدود یک روز پیش" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "حدود %d روز پیش" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "حدود یک ماه پیش" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "حدود %d ماه پیش" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "حدود یک سال پیش" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 0b36994205..c016316071 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:48+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:36+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -80,8 +80,13 @@ msgstr "Estä" msgid "Save access settings" msgstr "Profiilikuva-asetukset" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -113,7 +118,7 @@ msgstr "Sivua ei ole." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Käyttäjää ei ole." @@ -356,7 +361,7 @@ msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." msgid "This status is already a favorite." msgstr "Tämä päivitys on jo suosikki!" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Ei voitu lisätä suosikiksi." @@ -479,7 +484,7 @@ msgstr "Ryhmää ei löytynyt!" msgid "You are already a member of that group." msgstr "Sinä kuulut jo tähän ryhmään." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Sinut on estetty osallistumasta tähän ryhmään ylläpitäjän toimesta." @@ -531,17 +536,17 @@ msgid "Invalid token." msgstr "Koko ei kelpaa." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -577,12 +582,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Odottamaton lomakkeen lähetys." @@ -842,27 +850,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Ei" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Älä estä tätä käyttäjää" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Kyllä" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Estä tämä käyttäjä" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Käyttäjän estotiedon tallennus epäonnistui." @@ -875,8 +900,8 @@ msgstr "Käyttäjän estotiedon tallennus epäonnistui." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Tuota ryhmää ei ole." @@ -935,16 +960,24 @@ msgstr "Tuntematon osoitetyyppi %s " msgid "That address has already been confirmed." msgstr "Tämä osoite on jo vahvistettu." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Ei voitu päivittää käyttäjää." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Ei voitu poistaa sähköpostivahvistusta." @@ -1002,12 +1035,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Älä poista tätä päivitystä" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Poista tämä päivitys" @@ -1043,11 +1078,13 @@ msgstr "Poista päivitys" msgid "Are you sure you want to delete this notice?" msgstr "Oletko varma että haluat poistaa tämän päivityksen?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Älä poista tätä päivitystä" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -1070,7 +1107,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Poista tämä päivitys" @@ -1189,15 +1227,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Tallenna" @@ -1336,32 +1372,45 @@ msgstr "Ei voitu lisätä aliasta." msgid "Options saved." msgstr "Asetukset tallennettu." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Sähköpostiasetukset" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Määritä miten saat sähköpostin palvelusta %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Osoite" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Sähköpostiosoitteet" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Tämän hetken vahvistettu sähköpostiosoite." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Poista" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1370,109 +1419,143 @@ msgstr "" "sähköpostilaatikostasi (ja roskapostikansiosta!) viesti, jossa on " "lisäohjeita. " -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Peruuta" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "Sähköpostiosoitteet" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Sähköpostiosoite, esimerkiksi \"käyttäjätunnus@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Lisää" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Saapuva sähköposti" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Lähetä sähköpostia tähän osoitteeseen tehdäksesi päivityksiä." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan " "osoitteen" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Uusi" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Asetukset" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Lähetä sähköpostilla tieto uusista tilaajista." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Lähetä sähköpostia, jos joku lähettää minulle \"@-vastauksen\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Salli kavereiden tönäistä minua ja lähetä sähköpostilla ilmoitus." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Haluan lähettää päivityksiä sähköpostilla." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Julkaise MicroID sähköpostiosoitteelleni." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Asetukset tallennettu." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Ulkoasuasetukset tallennettu." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Sähköpostiosoitetta ei ole." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Ei voida normalisoida sähköpostiosoitetta" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Tämä on jo sähköpostiosoitteesi." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Tämä sähköpostiosoite kuuluu jo toisella käyttäjällä." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Ei voitu asettaa vahvistuskoodia." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1481,43 +1564,56 @@ msgstr "" "sähköpostilaatikostasi (ja roskapostilaatikostasi!) vahvistuskoodisi ja " "miten sitä käytetään. " -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Avoimia vahvistuksia ei ole peruutettavana." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Tämä on väärä pikaviestiosoite." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Vahvistus peruttu." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Tämä ei ole sähköpostiosoitteesi." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Osoite on poistettu." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Saapuvan sähköpostin osoitetta ei ole." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Ei voitu päivittää käyttäjätietoja." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Saapuvan sähköpostin osoite poistettu." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Uusi saapuvan sähköpostin osoite lisätty." @@ -1711,15 +1807,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Älä estä tätä käyttäjää tästä ryhmästä" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1892,12 +1990,16 @@ msgstr "Käyttäjää ei ole estetty ryhmästä." msgid "Error removing the block." msgstr "Tapahtui virhe, kun estoa poistettiin." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "Pikaviestiasetukset" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1906,15 +2008,25 @@ msgstr "" "Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc." "im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "Pikaviestin ei ole käytettävissä." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "Pikaviestiosoite" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Tämän hetken vahvistettu Jabber/GTalk -osoite." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1924,12 +2036,9 @@ msgstr "" "käyttäjätililtäsi viesti, jossa on lisäohjeet. (Lisäsitkö %s:n " "ystävälistaasi?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "Pikaviestiosoite" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1939,45 +2048,67 @@ msgstr "" "Varmista että olet lisännyt %s kaverilistaasi pikaviestiohjelmassasi tai " "GTalkissa." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Asetukset" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Lähetä minulle päivityksiä Jabberilla/GTalkilla." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Lähetä Jabberilla/GTalkilla sellaistenkin ihmisten vastaukset, joita en ole " "tilannut. " -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Asetukset tallennettu." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Ei Jabber ID -osoitetta" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Ei voida normalisoida Jabber ID -tunnusta" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Tuo ei ole kelvollinen Jabber ID." -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Tämä on jo Jabber ID -tunnuksesi." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID kuuluu jo toiselle käyttäjälle." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1986,10 +2117,35 @@ msgstr "" "Vahvistuskoodi lähetettiin antamaasi pikaviestinosoitteeseen. Sinun täytyy " "antaa osoitteelle %s oikeus lähettää viestejä sinulle." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Tämä on väärä pikaviestiosoite." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Ei voitu poistaa sähköpostivahvistusta." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Vahvistus peruttu." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Tämä ei ole Jabber ID-tunnuksesi." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Osoite on poistettu." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -2032,7 +2188,9 @@ msgstr "Kutsu uusia käyttäjiä" msgid "You are already subscribed to these users:" msgstr "Olet jos tilannut seuraavien käyttäjien päivitykset:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2158,7 +2316,9 @@ msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään." msgid "No nickname or ID." msgstr "Tunnusta ei ole." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s liittyi ryhmään %s" @@ -2167,11 +2327,13 @@ msgstr "%s liittyi ryhmään %s" msgid "You must be logged in to leave a group." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Sinä et kuulu tähän ryhmään." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s erosi ryhmästä %s" @@ -2289,12 +2451,12 @@ msgstr "Käytä tätä lomaketta luodaksesi ryhmän." msgid "New message" msgstr "Uusi viesti" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Et voi lähettää viestiä tälle käyttäjälle." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Ei sisältöä!" @@ -2302,7 +2464,7 @@ msgstr "Ei sisältöä!" msgid "No recipient specified." msgstr "Vastaanottajaa ei ole määritelty." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." @@ -2567,7 +2729,7 @@ msgid "6 or more characters" msgstr "6 tai useampia merkkejä" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Vahvista" @@ -3968,47 +4130,77 @@ msgstr "" msgid "Save site notice" msgstr "Palvelun ilmoitus" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "SMS-asetukset" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS ei ole käytettävissä." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Pikaviestiosoite" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Tämän hetken vahvistettu SMS puhelinnumero." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Odotetaan vahvistusta tälle puhelinnumerolle." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Vahvistuskoodi" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Syötä koodi jonka sait puhelimeesi." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Vahvista" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "SMS puhelinnumero" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, suuntanumerollinen" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Asetukset" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -4016,23 +4208,34 @@ msgstr "" "Lähetä päivityksiä SMS:llä; Ymmärrän, että voin saada kohtuuttomia laskuja " "tästä matkapuhelinoperaattoriltani." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Asetukset tallennettu." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Puhelinnumeroa ei ole." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Operaattoria ei ole valittu." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Tämä on jo puhelinnumerosi." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Tämä puhelinnumero kuuluu jo toiselle käyttäjälle." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -4040,23 +4243,42 @@ msgstr "" "Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " "vahvistuskoodisi ja ohjeet miten sitä käytetään." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Tämä on väärä vahvistukoodi." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Vahvistus peruttu." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Tämä ei ole puhelinnumerosi." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS puhelinnumero" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Matkapuhelinoperaattori" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Valitse operaattori" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4066,7 +4288,8 @@ msgstr "" "viestilähetyksiä sähköpostilla, mutta ei ole listattu tänne, lähetä " "sähköpostia meille osoitteeseen %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Koodia ei ole syötetty." @@ -5304,10 +5527,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Peruuta" @@ -5385,34 +5606,40 @@ msgstr "Komento epäonnistui" msgid "Notice with that id does not exist" msgstr "Ei profiilia tuolla id:llä." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Käyttäjällä ei ole viimeistä päivitystä" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Valitettavasti tätä komentoa ei ole vielä toteutettu." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Tönäisy lähetetty" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5420,203 +5647,207 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Päivitys on merkitty suosikiksi." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Sinä kuulut jo tähän ryhmään." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s liittyi ryhmään %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s erosi ryhmästä %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Koko nimi: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Kotipaikka: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Kotisivu: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Tietoa: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Suora viesti käyttäjälle %s lähetetty" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Tapahtui virhe suoran viestin lähetyksessä." -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "Ilmoituksia ei voi pistää päälle." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Poista tämä päivitys" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Päivitys lähetetty" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "Ongelma päivityksen tallentamisessa." -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "Vastaa tähän päivitykseen" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "Ongelma päivityksen tallentamisessa." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Käyttäjän %s päivitykset tilattu" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Käyttäjän %s päivitysten tilaus lopetettu" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Komentoa ei ole vielä toteutettu." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Ilmoitukset pois päältä." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Ilmoituksia ei voi pistää pois päältä." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Ilmoitukset päällä." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Ilmoituksia ei voi pistää päälle." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Käyttäjän %s päivitysten tilaus lopetettu" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:" msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Toista ei voitu asettaa tilaamaan sinua." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Toista ei voitu asettaa tilaamaan sinua." msgstr[1] "Toista ei voitu asettaa tilaamaan sinua." -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "Sinä et kuulu tähän ryhmään." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sinä et kuulu tähän ryhmään." msgstr[1] "Sinä et kuulu tähän ryhmään." -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6481,6 +6712,10 @@ msgstr "Ei id parametria." msgid "Repeat this notice?" msgstr "Vastaa tähän päivitykseen" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Kyllä" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6680,47 +6915,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "muutama sekunti sitten" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "noin minuutti sitten" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "noin %d minuuttia sitten" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "noin tunti sitten" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "noin %d tuntia sitten" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "noin päivä sitten" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "noin %d päivää sitten" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "noin kuukausi sitten" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "noin %d kuukautta sitten" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 0e0fc639a6..1aafddc3ad 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:35:56+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:42+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -77,8 +77,13 @@ msgstr "Fermé" msgid "Save access settings" msgstr "Sauvegarder les paramètres d’accès" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -108,7 +113,7 @@ msgstr "Page non trouvée." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utilisateur non trouvé." @@ -352,7 +357,7 @@ msgstr "Aucun statut trouvé avec cet identifiant. " msgid "This status is already a favorite." msgstr "Cet avis est déjà un favori." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Impossible de créer le favori." @@ -470,7 +475,7 @@ msgstr "Groupe non trouvé." msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Vous avez été bloqué de ce groupe par l’administrateur." @@ -521,17 +526,17 @@ msgid "Invalid token." msgstr "Jeton incorrect." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -569,12 +574,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "Le jeton de connexion %s a été refusé et révoqué." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." @@ -838,27 +846,44 @@ msgstr "" "abonné à votre compte, ne pourra plus s’y abonner de nouveau, et vous ne " "serez pas informé des @-réponses de sa part." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Non" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Ne pas bloquer cet utilisateur" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Oui" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquer cet utilisateur" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Impossible d’enregistrer les informations de blocage." @@ -871,8 +896,8 @@ msgstr "Impossible d’enregistrer les informations de blocage." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Aucun groupe trouvé." @@ -931,16 +956,24 @@ msgstr "Type d’adresse non reconnu : %s." msgid "That address has already been confirmed." msgstr "Cette adresse a déjà été confirmée." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Impossible de mettre à jour l’utilisateur." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Impossible de supprimer le courriel de confirmation." @@ -995,11 +1028,13 @@ msgstr "" "données à son propos de la base de données, y compris toutes les connexions " "utilisateur existantes." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Ne pas supprimer cette application" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Supprimer cette application" @@ -1034,11 +1069,13 @@ msgstr "Supprimer cet avis" msgid "Are you sure you want to delete this notice?" msgstr "Voulez-vous vraiment supprimer cet avis ?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -1062,7 +1099,8 @@ msgstr "" "Voulez-vous vraiment supprimer cet utilisateur ? Ceci effacera toutes les " "données à son propos de la base de données, sans sauvegarde." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Supprimer cet utilisateur" @@ -1175,15 +1213,13 @@ msgid "Reset back to default" msgstr "Revenir aux valeurs par défaut" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Enregistrer" @@ -1309,31 +1345,43 @@ msgstr "Impossible de créer les alias." msgid "Options saved." msgstr "Vos options ont été enregistrées." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Paramètres du courriel" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Configurez les courriels que vous souhaitez recevoir de %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Adresse électronique" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Adresse courriel actuellement confirmée." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Retirer" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1341,108 +1389,143 @@ msgstr "" "En attente d’une confirmation pour cette adresse. Vérifiez votre boîte de " "réception (et celle de spam !) pour recevoir de nouvelles instructions." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Annuler" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Adresse électronique" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Adresse de courriel (ex : nom@example.org)" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Ajouter" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Courriel entrant" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Écrivez à cette adresse courriel pour poster de nouveaux avis." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Nouvelle adresse courriel pour poster ; annule l’ancienne." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nouveau" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Préférences" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Avertissez-moi par courriel des nouveaux abonnements." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envoyez-moi un courriel quand un utilisateur ajoute un de mes avis à ses " "favoris." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Envoyez-moi un courriel quand quelqu’un m’envoie un message personnel." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Envoyez-moi un courriel quand quelqu’un m’envoie une réponse « @ »." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Autoriser mes amis à m’envoyer des courriels et des clins d’œil." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Je veux envoyer mes avis par courriel." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publier un MicroID pour mon adresse courriel." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Préférences enregistrées" +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Préférences de conception enregistrées." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Aucune adresse courriel." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Impossible d’utiliser cette adresse courriel" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse courriel invalide." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Vous utilisez déjà cette adresse courriel." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Cette adresse courriel appartient déjà à un autre utilisateur." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Impossible d’insérer le code de confirmation." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1450,43 +1533,56 @@ msgstr "" "Un code de confirmation a été envoyé à l’adresse courriel indiquée. Vérifiez " "votre boîte de réception pour récupérer le code et les instructions." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Aucune confirmation à annuler." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Cette adresse de messagerie instantanée est erronée." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Confirmation annulée." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Ceci n’est pas votre adresse courriel." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "L’adresse a été supprimée." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Aucune adresse de courriel entrant." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Impossible de mettre à jour le dossier de l’utilisateur." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "L’adresse de courriel entrant a été supprimée." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nouvelle adresse de courriel entrant ajoutée." @@ -1677,15 +1773,17 @@ msgstr "" "seront supprimés du groupe ; il leur sera interdit d’y poster et de s’y " "abonner à l’avenir." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Ne pas bloquer cet utilisateur pour ce groupe" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Bloquer cet utilisateur de de groupe" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" "Erreur de la base de données lors du blocage de l’utilisateur du groupe." @@ -1871,11 +1969,15 @@ msgstr "Cet utilisateur n’est pas bloqué du groupe." msgid "Error removing the block." msgstr "Erreur lors de l’annulation du blocage." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Paramètres de messagerie instantanée" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1885,15 +1987,24 @@ msgstr "" "(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" "dessous." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "La messagerie instantanée n’est pas disponible." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Adresse de messagerie instantanée" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Adresse Jabber/GTalk actuellement confirmée." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1903,11 +2014,9 @@ msgstr "" "Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à " "votre liste de contacts ?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Adresse de messagerie instantanée" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1917,46 +2026,68 @@ msgstr "" "votre liste d’amis dans votre logiciel de messagerie instantanée ou dans " "GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Préférences" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Envoyez-moi les avis par Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Poster un avis chaque fois que mon statut est modifié dans Jabber/GTalk" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne " "suis pas abonné." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publier un MicroID pour mon adresse Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Préférences enregistrées" + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Aucun identifiant Jabber" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Impossible d’utiliser cet identifiant Jabber" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Identifiant Jabber invalide." -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Vous utilisez déjà cet idenfiant Jabber." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1965,10 +2096,35 @@ msgstr "" "Un code de confirmation a été envoyé à votre adresse de messagerie " "instantanée. Vous devez approuver %s pour recevoir des messages." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Cette adresse de messagerie instantanée est erronée." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Impossible de supprimer le courriel de confirmation." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Confirmation annulée." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Ceci n’est pas votre identifiant Jabber." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "L’adresse a été supprimée." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2012,7 +2168,9 @@ msgstr "Inviter de nouveaux utilisateurs" msgid "You are already subscribed to these users:" msgstr "Vous êtes déjà abonné à ces utilisateurs :" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2138,7 +2296,9 @@ msgstr "Vous devez ouvrir une session pour rejoindre un groupe." msgid "No nickname or ID." msgstr "Aucun pseudo ou ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s a rejoint le groupe %2$s" @@ -2147,11 +2307,13 @@ msgstr "%1$s a rejoint le groupe %2$s" msgid "You must be logged in to leave a group." msgstr "Vous devez ouvrir une session pour quitter un groupe." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Vous n’êtes pas membre de ce groupe." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s a quitté le groupe %2$s" @@ -2268,12 +2430,12 @@ msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :" msgid "New message" msgstr "Nouveau message" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Aucun contenu !" @@ -2281,7 +2443,7 @@ msgstr "Aucun contenu !" msgid "No recipient specified." msgstr "Aucun destinataire n’a été spécifié." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2542,7 +2704,7 @@ msgid "6 or more characters" msgstr "6 caractères ou plus" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirmer" @@ -3948,47 +4110,77 @@ msgstr "" msgid "Save site notice" msgstr "Enregistrer l'avis du site" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Paramètres SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Vous pouvez recevoir des messages SMS par courriel en provenance de %%site." "name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "Les SMS ne sont pas disponibles." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Adresse de messagerie instantanée" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Numéro de téléphone actuellement confirmé pour recevoir les SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Numéro de téléphone en attente de confirmation." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Code de confirmation" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Entrez le code que vous avez reçu sur votre téléphone." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmer" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Numéro de téléphone pour les SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" "Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Préférences" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3996,23 +4188,34 @@ msgstr "" "Envoyez-moi les avis par SMS ; je comprends que cela pourrait affecter ma " "facture de téléphonie mobile." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Préférences enregistrées" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Aucun numéro de téléphone." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Aucun fournisseur sélectionné." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Vous utilisez déjà ce numéro de téléphone." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Ce numéro de téléphone est déjà utilisé." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -4021,23 +4224,42 @@ msgstr "" "Vérifiez votre boîte de réception pour récupérer le code et les instructions " "pour son utilisation." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Ce code de confirmation est incorrect." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Confirmation annulée." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Ceci n’est pas votre numéro de téléphone." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Numéro de téléphone pour les SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Fournisseur de téléphonie mobile" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Sélectionnez un fournisseur de téléphone mobile" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4047,7 +4269,8 @@ msgstr "" "qui accepte la réception de SMS par courriel mais qui n’est pas listé ici, " "écrivez-nous à %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Aucun code entré" @@ -5255,10 +5478,8 @@ msgstr "" "Accès par défaut pour cette application : en lecture seule ou en lecture-" "écriture" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Annuler" @@ -5334,34 +5555,40 @@ msgstr "Échec de la commande" msgid "Notice with that id does not exist" msgstr "Aucun avis avec cet identifiant n’existe" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Aucun avis récent pour cet utilisateur" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Impossible de trouver un utilisateur avec le pseudo %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Impossible de trouver un utilisateur local portant le pseudo %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Désolé, cette commande n’a pas encore été implémentée." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Ça n’a pas de sens de se faire un clin d’œil à soi-même !" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Clin d’œil envoyé à %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5372,57 +5599,55 @@ msgstr "" "Abonnés : %2$s\n" "Messages : %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Avis ajouté aux favoris." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Vous êtes déjà membre de ce groupe" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Impossible d’inscrire l’utilisateur %s au groupe %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s a rejoint le groupe %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Impossible de retirer l’utilisateur %s du groupe %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s a quitté le groupe %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Nom complet : %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Emplacement : %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Site Web : %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "À propos : %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5431,144 +5656,150 @@ msgstr "" "%s est un profil distant ; vous ne pouvez envoyer de messages directs qu'aux " "utilisateurs du même serveur." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -"Message trop long ! La taille maximale est de %d caractères ; vous en avez " -"entré %d." +"Message trop long ! La taille maximale est de %1$d caractères ; vous en avez " +"entré %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Message direct envoyé à %s." -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Une erreur est survenue pendant l’envoi de votre message." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Impossible de reprendre votre propre avis" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Avis déjà repris" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Avis de %s repris" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Erreur lors de la reprise de l’avis." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" "Avis trop long ! La taille maximale est de %d caractères ; vous en avez " "entré %d." -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Réponse à %s envoyée" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Problème lors de l’enregistrement de l’avis." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Indiquez le nom de l’utilisateur auquel vous souhaitez vous abonner" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossible de s'inscrire aux profils OMB par cette commande." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Abonné à %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Indiquez le nom de l’utilisateur duquel vous souhaitez vous désabonner" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Désabonné de %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Cette commande n’a pas encore été implémentée." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Avertissements désactivés." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Impossible de désactiver les avertissements." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Avertissements activés." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Impossible d’activer les avertissements." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "La commande d’ouverture de session est désactivée" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Ce lien n’est utilisable qu’une seule fois, et est valable uniquement " "pendant 2 minutes : %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Désabonné de %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Vous n’êtes abonné(e) à personne." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vous êtes abonné à cette personne :" msgstr[1] "Vous êtes abonné à ces personnes :" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Personne ne s’est abonné à vous." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Cette personne est abonnée à vous :" msgstr[1] "Ces personnes sont abonnées à vous :" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Vous n’êtes membre d’aucun groupe." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vous êtes membre de ce groupe :" msgstr[1] "Vous êtes membre de ces groupes :" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6545,6 +6776,10 @@ msgstr "Aucun argument de retour." msgid "Repeat this notice?" msgstr "Reprendre cet avis ?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Oui" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Reprendre cet avis" @@ -6731,47 +6966,57 @@ msgctxt "role" msgid "Moderator" msgstr "Modérateur" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "il y a quelques secondes" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "il y a 1 minute" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "il y a %d minutes" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "il y a 1 heure" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "il y a %d heures" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "il y a 1 jour" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "il y a %d jours" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "il y a 1 mois" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "il y a %d mois" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 7b64c2712e..93e4bb6580 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-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:00+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:45+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); 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" @@ -79,8 +79,13 @@ msgstr "Bloquear" msgid "Save access settings" msgstr "Configuracións de Twitter" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -112,7 +117,7 @@ msgstr "Non existe a etiqueta." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ningún usuario." @@ -351,7 +356,7 @@ msgstr "Non se atopou un estado con ese ID." msgid "This status is already a favorite." msgstr "Este chío xa é un favorito!" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." @@ -475,7 +480,7 @@ msgstr "Método da API non atopado" msgid "You are already a member of that group." msgstr "Xa estas suscrito a estes usuarios:" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -527,17 +532,17 @@ msgid "Invalid token." msgstr "Tamaño inválido." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -571,12 +576,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Envio de formulario non esperada." @@ -845,29 +853,46 @@ msgstr "" "do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " "ser notificado de ningunha resposta-@ del." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Bloquear usuario" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." @@ -880,8 +905,8 @@ msgstr "Erro ao gardar información de bloqueo." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 #, fuzzy msgid "No such group." msgstr "Non existe a etiqueta." @@ -943,16 +968,24 @@ msgstr "Tipo de enderezo %s non recoñecido" msgid "That address has already been confirmed." msgstr "Esa dirección xa foi confirmada." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Non se puido actualizar o usuario." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Non se pode eliminar a confirmación de email." @@ -1011,12 +1044,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Non se pode eliminar este chíos." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Eliminar chío" @@ -1053,12 +1088,14 @@ msgstr "Eliminar chío" msgid "Are you sure you want to delete this notice?" msgstr "Estas seguro que queres eliminar este chío?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 #, fuzzy msgid "Delete this notice" msgstr "Eliminar chío" @@ -1084,7 +1121,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Eliminar chío" @@ -1205,15 +1243,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1357,32 +1393,45 @@ msgstr "Non se puido crear o favorito." msgid "Options saved." msgstr "Configuracións gardadas." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Configuración de Correo" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Xestina como recibir correo dende %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Enderezo" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Enderezos de correo" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Direccións de correo confirmadas actualmente." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Eliminar" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1391,108 +1440,142 @@ msgstr "" "GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " "a %s á túa lista de contactos?)" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "Enderezos de correo" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Dirección de correo, coma \"Nomede Usuario@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Engadir" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correo Entrante" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Enviar un correo a esta dirección para enviar novos chíos." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Crear unha nova dirección de correo para enviar, elimina a antiga." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Novo" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferencias" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Envíame chios de novas suscricións por email." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir aos amigos darme toques e enviarme correos electrónicos." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Quero enviar chíos dende o mail." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publicar unha MicroID dende a miña dirección de correo." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Preferencias gardadas." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Non se inseriu unha dirección de correo" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Esa dirección de correo non se pode normalizar " -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non é un enderezo de correo válido." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Xa é o teu enderezo de correo." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Este enderezo de correo xa pertence a outro usuario." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Non se puido inserir o código de confirmación." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1501,43 +1584,56 @@ msgstr "" "Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " "debes seguir." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Non hai ningunha confirmación pendente para cancelar." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Esa é unha enderezo IM incorrecto." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Confirmación cancealada." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Esa non é a túa dirección de correo." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Enderezo eliminado." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Non hai direccións de correo entrante" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Non se puido actualizar o rexistro de usuario." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Dirección de correo entrante eliminada." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Engadida nova dirección de correo entrante." @@ -1739,15 +1835,17 @@ msgstr "" "do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " "ser notificado de ningunha resposta-@ del." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1927,12 +2025,16 @@ msgstr "O usuario bloqueoute." msgid "Error removing the block." msgstr "Acounteceu un erro borrando o bloqueo." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "Configuracións de IM" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1941,15 +2043,25 @@ msgstr "" "Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos]" "(%%doc.im%%). Configura a túa conta e configuracións abaixo." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "Enderezo de IM" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Direccións Jabber/GTalk confirmadas." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1958,12 +2070,9 @@ msgstr "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "Enderezo de IM" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1973,44 +2082,66 @@ msgstr "" "asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no " "GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferencias" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme advertencias a través de Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar unha MicroID dende a miña dirección de Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Preferencias gardadas." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Sen Identificador de Jabber." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Non se pode normalizar ese identificador de Jabber" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Non é un Identificador de Jabber válido" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Xa é a túa conta de Jabber." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "O identificador de Jabber xa pertence a outro usuario." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2019,10 +2150,35 @@ msgstr "" "O código de confirmación foi embiado á dirección IM que engadiches. Deberías " "engadir a %s como contacto para que che poida enviar mensaxes." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Esa é unha enderezo IM incorrecto." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Non se pode eliminar a confirmación de email." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Confirmación cancealada." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Esa non é a túa conta Jabber." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Enderezo eliminado." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -2064,7 +2220,9 @@ msgstr "Invitar a novos usuarios" msgid "You are already subscribed to these users:" msgstr "Xa estas suscrito a estes usuarios:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2188,7 +2346,9 @@ msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" msgid "No nickname or ID." msgstr "Sen alcume." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s / Favoritos dende %s" @@ -2198,12 +2358,14 @@ msgstr "%s / Favoritos dende %s" msgid "You must be logged in to leave a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 #, fuzzy msgid "You are not a member of that group." msgstr "Non estás suscrito a ese perfil" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s / Favoritos dende %s" @@ -2318,12 +2480,12 @@ msgstr "" msgid "New message" msgstr "Nova mensaxe" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Non podes enviar mensaxes a este usurio." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Sen contido!" @@ -2331,7 +2493,7 @@ msgstr "Sen contido!" msgid "No recipient specified." msgstr "Non se especificou ningún destinatario" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2598,7 +2760,7 @@ msgid "6 or more characters" msgstr "6 ou máis caracteres" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirmar" @@ -4017,46 +4179,76 @@ msgstr "" msgid "Save site notice" msgstr "Novo chío" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "Configuracións de SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Podes recibir mensaxes SMS a través do email dende %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Enderezo de IM" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de teléfono actual confirmado mediante SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Agardando a confirmación neste número de teléfono." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Código de confirmación." -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Insire o código que recibiches no teu teléfono." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "Número de Teléfono do SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferencias" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -4064,23 +4256,34 @@ msgstr "" "Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme " "grandes facturas." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Preferencias gardadas." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Non hai ningún número de teléfono." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Non se seleccionou unha operadora." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Xa é o teu número de teléfono." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "O número de teléfono xa pertence a outro usuario." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -4090,24 +4293,43 @@ msgstr "" "Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " "debes seguir." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Ese é un número de confirmación incorrecto." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Confirmación cancealada." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Ese non é o teu número de teléfono." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Número de Teléfono do SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 #, fuzzy msgid "Mobile carrier" msgstr "Selecciona unha operadora" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Selecciona unha operadora" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4116,7 +4338,8 @@ msgstr "" "Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre " "email e non está listada aquí, envianos unha mensaxe para incluilo en %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Non se inseriu ningún código" @@ -5363,10 +5586,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -5444,34 +5665,40 @@ msgstr "Comando fallido" msgid "Notice with that id does not exist" msgstr "Non se atopou un perfil con ese ID." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "O usuario non ten último chio." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Desculpa, este comando todavía non está implementado." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Toque enviado" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5482,176 +5709,180 @@ msgstr "" "Suscriptores: %2$s\n" "Chíos: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Chío marcado coma favorito." -#: lib/command.php:317 +#: lib/command.php:323 #, fuzzy msgid "You are already a member of that group" msgstr "Xa estas suscrito a estes usuarios:" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "%s / Favoritos dende %s" - -#: lib/command.php:373 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: lib/command.php:378 -#, fuzzy, php-format -msgid "%s left group %s" -msgstr "%s / Favoritos dende %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Ubicación: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Páxina persoal: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Mensaxe directo a %s enviado" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Erro ó enviar a mensaxe directa." -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "Non se pode activar a notificación." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Eliminar chío" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Chío publicado" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "Aconteceu un erro ó gardar o chío." -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Non se pode eliminar este chíos." -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Especifica o nome do usuario ó que queres suscribirte" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Non estás suscrito a ese perfil" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Suscrito a %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifica o nome de usuario ó que queres deixar de seguir" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Desuscribir de %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Comando non implementado." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notificación desactivada." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "No se pode desactivar a notificación." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notificación habilitada." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Non se pode activar a notificación." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Desuscribir de %s" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Non estás suscrito a ese perfil" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Xa estas suscrito a estes usuarios:" @@ -5660,12 +5891,12 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Outro usuario non se puido suscribir a ti." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Outro usuario non se puido suscribir a ti." @@ -5674,12 +5905,12 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "Non estás suscrito a ese perfil" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Non estás suscrito a ese perfil" @@ -5688,7 +5919,7 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: lib/command.php:812 +#: lib/command.php:838 #, fuzzy msgid "" "Commands:\n" @@ -6641,6 +6872,10 @@ msgstr "Non hai argumento id." msgid "Repeat this notice?" msgstr "Non se pode eliminar este chíos." +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Si" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6847,47 +7082,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "fai uns segundos" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "fai un minuto" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "fai %d minutos" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "fai unha hora" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "fai %d horas" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "fai un día" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "fai %d días" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "fai un mes" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "fai %d meses" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "fai un ano" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 1d1a2ba8bd..30bf985760 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:03+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:48+0000\n" "Language-Team: Galician\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: out-statusnet\n" @@ -72,8 +72,13 @@ msgstr "Pechado" msgid "Save access settings" msgstr "Gardar a configuración de acceso" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Gardar" @@ -104,7 +109,7 @@ msgstr "Non existe tal páxina" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Non existe tal usuario." @@ -348,7 +353,7 @@ msgstr "Non se atopou ningún estado con esa ID." msgid "This status is already a favorite." msgstr "Este estado xa é dos favoritos." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." @@ -467,7 +472,7 @@ msgstr "Non se atopou o grupo!" msgid "You are already a member of that group." msgstr "Xa forma parte dese grupo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "O administrador bloqueouno nese grupo." @@ -518,17 +523,17 @@ msgid "Invalid token." msgstr "Pase incorrecto." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -563,12 +568,15 @@ msgstr "Autorizouse a ficha da solicitude %s. Intercámbiea por un pase." msgid "The request token %s has been denied and revoked." msgstr "Denegouse e revogouse a ficha da solicitude %s." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." @@ -830,27 +838,44 @@ msgstr "" "subscrito a vostede mentres siga bloqueado, e vostede non recibirá ningunha " "das súas respostas." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Non" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Non bloquear este usuario" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Non se puido gardar a información do bloqueo." @@ -863,8 +888,8 @@ msgstr "Non se puido gardar a información do bloqueo." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Non existe tal grupo." @@ -923,16 +948,24 @@ msgstr "Non se recoñeceu o tipo de enderezo %s" msgid "That address has already been confirmed." msgstr "Ese enderezo xa se confirmou." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Non se puido actualizar o usuario." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Non se puido borrar a confirmación por correo electrónico." @@ -987,11 +1020,13 @@ msgstr "" "datos da aplicación da base de datos, incluídas todas as conexións do " "usuario existentes." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Non borrar a aplicación" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Borrar a aplicación" @@ -1026,11 +1061,13 @@ msgstr "Borrar a nota" msgid "Are you sure you want to delete this notice?" msgstr "Está seguro de querer borrar esta nota?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Non borrar esta nota" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Borrar esta nota" @@ -1054,7 +1091,8 @@ msgstr "" "Está seguro de querer borrar este usuario? Isto borrará todos os datos do " "usuario da base de datos, sen posibilidade de recuperalos." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Borrar o usuario" @@ -1167,15 +1205,13 @@ msgid "Reset back to default" msgstr "Volver ao deseño por defecto" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1301,31 +1337,43 @@ msgstr "Non se puideron crear os pseudónimos." msgid "Options saved." msgstr "Gardáronse as preferencias." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Configuración do correo electrónico" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Xestiona a forma en que recibes correo electrónico de %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Enderezo" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Enderezo de correo electrónico" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Enderezo de correo electrónico confirmado actualmente." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Borrar" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1333,113 +1381,148 @@ msgstr "" "Agardando pola confirmación deste enderezo. Busque unha mensaxe con máis " "instrucións na súa bandexa de entrada (e na de correo non desexado!)." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Enderezo de correo electrónico" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Enderezo de correo electrónico, coma \"nomedeusuario@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Engadir" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correo entrante" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" "Enviar un correo electrónico a este enderezo para publicar novas notas." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Establece un novo enderezo de correo electrónico no que publicar, e cancela " "o vello." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Novo" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferencias" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Enviarme notas acerca de novas subscricións por correo electrónico." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Enviádeme un correo electrónico cando alguén marque como favorito algunha " "das miñas notas." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" "Enviádeme un correo electrónico cando alguén me envíe unha mensaxe privada." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Enviádeme un correo electrónico cando alguén me envíe unha resposta." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" "Permitirlles aos meus amigos facerme acenos e enviarme correos electrónicos." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Quero publicar notas por correo electrónico." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publicar unha MicroID para o meu enderezo de correo electrónico." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Gardáronse as preferencias." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Gardáronse as preferencias de deseño." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Non hai enderezo de correo electrónico." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Non se pode normalizar ese enderezo de correo electrónico" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "O enderezo de correo electrónico é incorrecto." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Ese enderezo de correo electrónico é o que ten agora." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Ese enderezo de correo electrónico xa pertence a outro usuario." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Non se puido inserir o código de confirmación." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1448,43 +1531,56 @@ msgstr "" "engadiu. Busque o código e as instrucións para usalo na súa bandexa de " "entrada (e na de correo non desexado!)." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Non hai ningunha confirmación pendente que cancelar." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Ese enderezo de mensaxería instantánea é incorrecto." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Cancelouse a confirmación." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Ese non é o seu enderezo de correo electrónico." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Borrouse o enderezo." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Non hai ningún enderezo ao que enviar." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Non se puido actualizar o rexistro do usuario." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Borrouse o enderezo de correo electrónico entrante." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Engadiuse un novo enderezo de correo electrónico entrante." @@ -1674,15 +1770,17 @@ msgstr "" "do grupo, sen a posibilidade de publicar nada nel nin volver subscribirse a " "el no futuro." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Non excluír deste grupo a este usuario" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Excluír deste grupo a este usuario" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Houbo un erro na base de datos ao excluír do grupo ao usuario." @@ -1864,11 +1962,15 @@ msgstr "O usuario non está excluído do grupo." msgid "Error removing the block." msgstr "Houbo un erro ao facer efectiva a readmisión." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Configuración da mensaxería instantánea" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1877,15 +1979,24 @@ msgstr "" "Pode enviar e recibir notas mediante [mensaxes instantáneas](%%doc.im%%) de " "Jabber/GTalk. Configure a continuación o seu enderezo e preferencias." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "A mensaxería instantánea non está dispoñible." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Enderezo de mensaxería instantánea" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Enderezo de Jabber/GTalk confirmado actualmente." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1895,11 +2006,9 @@ msgstr "" "GTalk unha mensaxe con máis instrucións. (Engadiu a %s á súa lista de " "amigos?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Enderezo de mensaxería instantánea" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1909,45 +2018,67 @@ msgstr "" "primeiro de engadir a %s á súa lista de amigos no seu cliente de mensaxería " "instantánea ou en GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferencias" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Enviádeme as notas mediante Jabber ou GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar unha nota cando cambie o meu estado en Jabber ou GTalk." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Enviádeme as respostas mediante Jabber ou GTalk da xente á que non estou " "subscrita." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar unha MicroID para o meu enderezo de Jabber ou GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Gardáronse as preferencias." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Non existe ningunha ID de Jabber." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Non se pode normalizar esa ID de Jabber" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "A ID de Jabber non é correcta" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Esa xa é a súa ID de Jabber." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Esa ID de Jabber xa corresponde a un usuario." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1956,10 +2087,35 @@ msgstr "" "Enviouse un código de confirmación ao enderezo de mensaxería instantánea que " "engadiu. Ten que aprobar que %s lle envíe mensaxes." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Ese enderezo de mensaxería instantánea é incorrecto." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Non se puido borrar a confirmación por correo electrónico." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Cancelouse a confirmación." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Esa ID de Jabber non é súa." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Borrouse o enderezo." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2001,7 +2157,9 @@ msgstr "Invitar a novos usuarios" msgid "You are already subscribed to these users:" msgstr "Xa está subscrito aos seguintes usuarios:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2124,7 +2282,9 @@ msgstr "Ten que identificarse para unirse a un grupo." msgid "No nickname or ID." msgstr "Nin alcume nin ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s uniuse ao grupo %2$s" @@ -2133,11 +2293,13 @@ msgstr "%1$s uniuse ao grupo %2$s" msgid "You must be logged in to leave a group." msgstr "Ten que identificarse para deixar un grupo." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Non pertence a ese grupo." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" @@ -2252,12 +2414,12 @@ msgstr "Utilice o seguinte formulario para crear un novo grupo." msgid "New message" msgstr "Mensaxe nova" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Non pode enviarlle unha mensaxe a este usuario." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Non hai contido ningún!" @@ -2265,7 +2427,7 @@ msgstr "Non hai contido ningún!" msgid "No recipient specified." msgstr "Non se especificou ningún destinatario." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non se envíe unha mensaxe, limítese a pensar nela." @@ -2526,7 +2688,7 @@ msgid "6 or more characters" msgstr "Seis ou máis caracteres" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirmar" @@ -3844,95 +4006,156 @@ msgstr "" msgid "Save site notice" msgstr "" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Enderezo de mensaxería instantánea" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferencias" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Gardáronse as preferencias." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Cancelouse a confirmación." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Borrouse o enderezo." + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -5075,10 +5298,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -5152,34 +5373,40 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5187,195 +5414,199 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" +msgstr "O usuario %1$s non se puido eliminar do grupo %2$s." -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "" - -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vostede está subscrito a esta persoa:" msgstr[1] "Vostede está subscrito a estas persoas:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta persoa está subscrita a vostede:" msgstr[1] "Estas persoas están subscritas a vostede:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vostede pertence a este grupo:" msgstr[1] "Vostede pertence a estes grupos:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6196,6 +6427,10 @@ msgstr "" msgid "Repeat this notice?" msgstr "" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Si" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "" @@ -6382,47 +6617,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index ab30f9d503..296330eb63 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:06+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:52+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -76,8 +76,13 @@ msgstr "אין משתמש כזה." msgid "Save access settings" msgstr "הגדרות" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -109,7 +114,7 @@ msgstr "אין הודעה כזו." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "אין משתמש כזה." @@ -345,7 +350,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "זהו כבר זיהוי ה-Jabber שלך." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "" @@ -467,7 +472,7 @@ msgstr "לא נמצא" msgid "You are already a member of that group." msgstr "כבר נכנסת למערכת!" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -520,17 +525,17 @@ msgid "Invalid token." msgstr "גודל לא חוקי." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -564,12 +569,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "הגשת טופס לא צפויה." @@ -835,29 +843,46 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "לא" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "אין משתמש כזה." -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "כן" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -870,8 +895,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 #, fuzzy msgid "No such group." msgstr "אין הודעה כזו." @@ -933,16 +958,24 @@ msgstr "סוג לא מזוהה של כתובת %s" msgid "That address has already been confirmed." msgstr "כתובת זו כבר אושרה." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "עידכון המשתמש נכשל." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "" @@ -1000,12 +1033,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "אין הודעה כזו." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" @@ -1039,12 +1074,14 @@ msgstr "" msgid "Are you sure you want to delete this notice?" msgstr "" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "אין הודעה כזו." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1069,7 +1106,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "אין משתמש כזה." @@ -1190,15 +1228,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "שמור" @@ -1336,180 +1372,240 @@ msgstr "שמירת מידע התמונה נכשל" msgid "Options saved." msgstr "ההגדרות נשמרו." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "הגדרות הפרופיל" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "כתבות" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "כתובת מסרים מידיים" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "הסר" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "בטל" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "כתובת מסרים מידיים" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "הוסף" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "חדש" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "העדפות" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "העדפות נשמרו." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "הכנסת קוד האישור נכשלה." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "אין אישור ממתין שניתן לבטל." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "זוהי כתובת מסרים מידיים שגויה." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "האישור בוטל." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "הכתובת הוסרה." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1709,17 +1805,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "נכשלה ההפניה לשרת: %s" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "אין משתמש כזה." -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1900,12 +1998,16 @@ msgstr "למשתמש אין פרופיל." msgid "Error removing the block." msgstr "שגיאה בשמירת המשתמש." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "הגדרות מסרים מידיים" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1914,16 +2016,26 @@ msgstr "" "אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " "את כתובתך והעדפותיך למטה." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "כתובת מסרים מידיים" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "כתובת מאושרת נוכחית של Jabber/GTalk." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1932,12 +2044,9 @@ msgstr "" "מחכה לאישור כתובת זו. בדוק את חשבון ה-Jabber/GTalk שלך לקבלת מסר עם הוראות " "נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "כתובת מסרים מידיים" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1946,43 +2055,65 @@ msgstr "" "כתובת Jabber או GTalk, כגון \"UserName@example.org\". הוסף את %s אל רשימת " "החברים בתוכנת ההמסרים המידיים או GTalk שלך." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "העדפות" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "שלח לי הודעות דרך Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "פרסם הודעה כששורת הסטטוס שלי ב-Jabber/GTalk מתעדכנת." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "העדפות נשמרו." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "אין זיהוי Jabber כזה." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "לא עומד בכללים לזיהוי Jabber" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "זהו כבר זיהוי ה-Jabber שלך." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1991,10 +2122,35 @@ msgstr "" "קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " "מידיים אליך." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "זוהי כתובת מסרים מידיים שגויה." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "הכנסת קוד האישור נכשלה." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "האישור בוטל." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "זהו לא זיהוי ה-Jabber שלך." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "הכתובת הוסרה." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2035,7 +2191,9 @@ msgstr "" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2130,7 +2288,9 @@ msgstr "" msgid "No nickname or ID." msgstr "אין כינוי" -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2139,12 +2299,14 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 #, fuzzy msgid "You are not a member of that group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "הסטטוס של %1$s ב-%2$s " @@ -2255,12 +2417,12 @@ msgstr "" msgid "New message" msgstr "הודעה חדשה" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "אין תוכן!" @@ -2268,7 +2430,7 @@ msgstr "אין תוכן!" msgid "No recipient specified." msgstr "" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2530,7 +2692,7 @@ msgid "6 or more characters" msgstr "לפחות 6 אותיות" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "אשר" @@ -3881,98 +4043,159 @@ msgstr "" msgid "Save site notice" msgstr "הודעה חדשה" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "הגדרות מסרים מידיים" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "כתובת מסרים מידיים" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "אשר" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "העדפות" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "העדפות נשמרו." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "האישור בוטל." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "הכתובת הוסרה." + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -5200,10 +5423,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "בטל" @@ -5281,35 +5502,41 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "אין פרופיל תואם לפרופיל המרוחק " -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 #, fuzzy msgid "User has no last notice" msgstr "למשתמש אין פרופיל." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "עידכון המשתמש נכשל." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "עידכון המשתמש נכשל." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "תגובת עבור %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5317,204 +5544,208 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 #, fuzzy msgid "You are already a member of that group" msgstr "כבר נכנסת למערכת!" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "נכשלה ההפניה לשרת: %s" -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "הסטטוס של %1$s ב-%2$s " - -#: lib/command.php:373 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "נכשלה יצירת OpenID מתוך: %s" -#: lib/command.php:378 -#, fuzzy, php-format -msgid "%s left group %s" -msgstr "הסטטוס של %1$s ב-%2$s " - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, fuzzy, php-format msgid "Fullname: %s" msgstr "שם מלא" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "אודות: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "לא ניתן להירשם ללא הסכמה לרשיון" -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "כבר נכנסת למערכת!" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "הודעות" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "בעיה בשמירת ההודעה." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "תגובת עבור %s" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "בעיה בשמירת ההודעה." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "בטל מנוי" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "הרשמה מרוחקת" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "הרשמה מרוחקת" msgstr[1] "הרשמה מרוחקת" -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6372,6 +6603,10 @@ msgstr "אין מסמך כזה." msgid "Repeat this notice?" msgstr "אין הודעה כזו." +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "כן" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6571,47 +6806,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "לפני מספר שניות" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "לפני כדקה" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "לפני כ-%d דקות" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "לפני כשעה" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "לפני כ-%d שעות" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "לפני כיום" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "לפני כ-%d ימים" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "לפני כחודש" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "לפני כ-%d חודשים" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "לפני כשנה" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index c7afc53d2d..3944af266b 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-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:09+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:55+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -73,8 +73,13 @@ msgstr "Začinjeny" msgid "Save access settings" msgstr "Přistupne nastajenja składować" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Składować" @@ -105,7 +110,7 @@ msgstr "Strona njeeksistuje" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Wužiwar njeeksistuje" @@ -334,7 +339,7 @@ msgstr "Status z tym ID njenamakany." msgid "This status is already a favorite." msgstr "Tutón status je hižo faworit." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "" @@ -451,7 +456,7 @@ msgstr "Skupina njenamakana!" msgid "You are already a member of that group." msgstr "Sy hižo čłon teje skupiny." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -502,17 +507,17 @@ msgid "Invalid token." msgstr "Njepłaćiwy token." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -543,12 +548,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "" @@ -801,27 +809,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Ně" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Tutoho wužiwarja njeblokować" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Haj" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -834,8 +859,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Skupina njeeksistuje." @@ -894,16 +919,24 @@ msgstr "Njespóznany adresowy typ %s" msgid "That address has already been confirmed." msgstr "Tuta adresa bu hižo wobkrućena." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "" -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "" @@ -955,11 +988,13 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Tutu aplikaciju njezničić" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Tutu aplikaciju zničić" @@ -992,11 +1027,13 @@ msgstr "Zdźělenku wušmórnyć" msgid "Are you sure you want to delete this notice?" msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Tutu zdźělenku njewušmórnyć" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -1018,7 +1055,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Tutoho wužiwarja wušmórnyć" @@ -1130,15 +1168,13 @@ msgid "Reset back to default" msgstr "Na standard wróćo stajić" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Składować" @@ -1264,178 +1300,238 @@ msgstr "Aliasy njejsu so dali wutworić." msgid "Options saved." msgstr "Opcije składowane." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "E-mejlowe nastajenja" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adresa" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "E-mejlowa adresa" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Aktualna wobkrućena e-mejlowa adresa." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Wotstronić" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Přetorhnyć" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "E-mejlowa adresa" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mejlowa adresa, kaž na př. \"WužiwarskeMjeno@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Přidać" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Dochadźaca e-mejl" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nowy" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Nastajenja" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Chcu zdźělenki přez e-mejl pósłać." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "MicroID za moju e-mejlowu adresu publikować" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Nastajenja składowane." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Designowe nastajenja składowane." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Žana e-mejlowa adresa." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Njepłaćiwa e-mejlowa adresa." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "To je hižo twoja e-mejlowa adresa." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Ta e-mejlowa adresa hižo słuša k druhemu wužiwarjej." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "" -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "to je wopačna IM-adresa." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Wobkrućenje přetorhnjene." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "To njeje twoja e-mejlowa adresa." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Adresa bu wotstronjena." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Žana adresa za dochadźace e-mejle." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Adresa za dochadźaće e-mejle wotstronjena." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nowa adresa za dochadźace e-mejle přidata." @@ -1618,15 +1714,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Tutoho wužiwarja za tutu skupinu blokować" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Tutoho wužiwarja za tutu skupinu blokować" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1796,90 +1894,148 @@ msgstr "" msgid "Error removing the block." msgstr "" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "IM-nastajenja" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM k dispoziciji njesteji." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IM-adresa" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, 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 "IM-adresa" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Nastajenja" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Nastajenja składowane." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Žadyn ID Jabber." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Njepłaćiwy ID Jabber" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "To je hižo twój ID Jabber." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, 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 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "to je wopačna IM-adresa." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Abonoment njeje so dał zničić." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Wobkrućenje přetorhnjene." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "To njeje twój ID Jabber." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Adresa bu wotstronjena." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1920,7 +2076,9 @@ msgstr "Nowych wužiwarjow přeprosyć" msgid "You are already subscribed to these users:" msgstr "Sy tutych wužiwarjow hižo abonował:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2015,7 +2173,9 @@ msgstr "" msgid "No nickname or ID." msgstr "Žane přimjeno abo žadyn ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2024,11 +2184,13 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wopušćił." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Njejsy čłon teje skupiny." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "" @@ -2134,12 +2296,12 @@ msgstr "Wužij tutón formular, zo by nowu skupinu wutworił." msgid "New message" msgstr "Nowa powěsć" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Njemóžeš tutomu wužiwarju powěsć pósłać." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Žadyn wobsah!" @@ -2147,7 +2309,7 @@ msgstr "Žadyn wobsah!" msgid "No recipient specified." msgstr "Žadyn přijimowar podaty." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2395,7 +2557,7 @@ msgid "6 or more characters" msgstr "6 abo wjace znamješkow" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Wobkrućić" @@ -3691,95 +3853,156 @@ msgstr "" msgid "Save site notice" msgstr "Sydłowu zdźělenku składować" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "SMS-nastajenja" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS k dispoziciji njesteji." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM-adresa" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Wobkrućić" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "SMS telefonowe čisło" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Nastajenja" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Nastajenja składowane." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Žane telefonowe čisło." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "To je hižo twoje telefonowe čisło." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Te telefonowe čisło hižo druhemu wužiwarjej słuša." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Wobkrućenje přetorhnjene." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS telefonowe čisło" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Žadyn kod zapodaty" @@ -4920,10 +5143,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Přetorhnyć" @@ -4997,34 +5218,40 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "Zdźělenka z tym ID njeeksistuje" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Wužiwar nima poslednju powěsć" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5032,169 +5259,173 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Sy hižo čłon teje skupiny" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Njebě móžno wužiwarja %s skupinje %s přidać" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s je so k skupinje %s přizamknył" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Njebě móžno wužiwarja %s do skupiny %s přesunyć" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s je skupinu %s wopušćił" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Dospołne mjeno: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Městno: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Wo: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Direktna powěsć do %s pósłana" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Njemóžeš swójsku powěsć wospjetować" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Tuta zdźělenka bu hižo wospjetowana" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Zdźělenka wot %s wospjetowana" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Zmylk při wospjetowanju zdźělenki" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Wotmołwa na %s pósłana" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "OMB-profile njedadźa so přez přikaz abonować." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "%s wotskazany" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Sy tutu wosobu abonował:" @@ -5202,11 +5433,11 @@ msgstr[1] "Sy tutej wosobje abonował:" msgstr[2] "Sy tute wosoby abonował:" msgstr[3] "Sy tute wosoby abonował:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Tuta wosoba je će abonowała:" @@ -5214,11 +5445,11 @@ msgstr[1] "Tutej wosobje stej će abonowałoj:" msgstr[2] "Tute wosoby su će abonowali:" msgstr[3] "Tute wosoby su će abonowali:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sy čłon tuteje skupiny:" @@ -5226,7 +5457,7 @@ msgstr[1] "Sy čłon tuteju skupinow:" msgstr[2] "Sy čłon tutych skupinow:" msgstr[3] "Sy čłon tutych skupinow:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6047,6 +6278,10 @@ msgstr "Žane wróćenske argumenty." msgid "Repeat this notice?" msgstr "Tutu zdźělenku wospjetować?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Haj" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Tutu zdźělenku wospjetować" @@ -6233,47 +6468,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "před něšto sekundami" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "před %d mjeńšinami" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "před něhdźe %d hodźinami" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "před něhdźe %d dnjemi" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "před něhdźe %d měsacami" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 0d9bf1bce8..1137731c78 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:14+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:43:58+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -71,8 +71,13 @@ msgstr "Claudite" msgid "Save access settings" msgstr "Salveguardar configurationes de accesso" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -103,7 +108,7 @@ msgstr "Pagina non existe" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Usator non existe." @@ -345,7 +350,7 @@ msgstr "Nulle stato trovate con iste ID." msgid "This status is already a favorite." msgstr "Iste stato es ja favorite." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Non poteva crear le favorite." @@ -462,7 +467,7 @@ msgstr "Gruppo non trovate!" msgid "You are already a member of that group." msgstr "Tu es ja membro de iste gruppo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Le administrator te ha blocate de iste gruppo." @@ -513,17 +518,17 @@ msgid "Invalid token." msgstr "Indicio invalide." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -559,12 +564,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "Le indicio de requesta %s ha essite refusate e revocate." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Submission de formulario inexpectate." @@ -827,27 +835,44 @@ msgstr "" "cancellate, ille non potera resubscriber se a te in le futuro, e tu non " "recipera notification de su @-responsas." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Non blocar iste usator" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Si" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blocar iste usator" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Falleva de salveguardar le information del blocada." @@ -860,8 +885,8 @@ msgstr "Falleva de salveguardar le information del blocada." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Gruppo non existe." @@ -920,16 +945,24 @@ msgstr "Typo de adresse %s non recognoscite" msgid "That address has already been confirmed." msgstr "Iste adresse ha ja essite confirmate." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Non poteva actualisar usator." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Non poteva deler confirmation de e-mail." @@ -984,11 +1017,13 @@ msgstr "" "le application del base de datos, includente tote le existente connexiones " "de usator." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Non deler iste application" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Deler iste application" @@ -1023,11 +1058,13 @@ msgstr "Deler nota" msgid "Are you sure you want to delete this notice?" msgstr "Es tu secur de voler deler iste nota?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Non deler iste nota" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Deler iste nota" @@ -1051,7 +1088,8 @@ msgstr "" "Es tu secur de voler deler iste usator? Isto radera tote le datos super le " "usator del base de datos, sin copia de reserva." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Deler iste usator" @@ -1164,15 +1202,13 @@ msgid "Reset back to default" msgstr "Revenir al predefinitiones" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Salveguardar" @@ -1298,31 +1334,43 @@ msgstr "Non poteva crear aliases." msgid "Options saved." msgstr "Optiones salveguardate." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Configuration de e-mail" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Configurar como reciper e-mail de %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Adresse de e-mail" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Adresse de e-mail actualmente confirmate." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Remover" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1330,107 +1378,142 @@ msgstr "" "Attende confirmation de iste adresse. Verifica tu cassa de entrata (e de " "spam!) pro un message con ulterior instructiones." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Adresse de e-mail" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Le adresse de e-mail, como \"nomine@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Adder" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "E-mail entrante" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Invia e-mail a iste adresse pro publicar nove notas." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Face un nove adresse de e-mail per le qual publicar; cancella le vetule." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nove" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferentias" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Inviar me notificationes de nove subscriptiones per e-mail." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Inviar me e-mail quando alcuno adde mi nota al favorites." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Inviar me e-mail quando alcuno me invia un message private." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Inviar me e-mail quando alcuno me invia un \"responsa @\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Permitte que amicos me pulsa e me invia e-mail." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Io vole publicar notas per e-mail." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publicar un MicroID pro mi adresse de e-mail." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferentias confirmate." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Preferentias de apparentia salveguardate." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Nulle adresse de e-mail." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Non pote normalisar iste adresse de e-mail" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse de e-mail invalide." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Isto es ja tu adresse de e-mail." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Iste adresse de e-mail pertine ja a un altere usator." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Non poteva inserer le codice de confirmation." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1439,43 +1522,56 @@ msgstr "" "addeva. Verifica tu cassa de entrata (e de spam!) pro le codice e le " "instructiones pro usar lo." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nulle confirmation pendente a cancellar." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Iste adresse de messageria instantanee es erronee." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Confirmation cancellate." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Isto non es tu adresse de e-mail." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Le adresse ha essite removite." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Nulle adresse de e-mail entrante." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Non poteva actualisar le datos del usator." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Adresse de e-mail entrante removite." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nove adresse de e-mail entrante addite." @@ -1666,15 +1762,17 @@ msgstr "" "essera removite del gruppo, non potera publicar messages, e non potera " "subscriber se al gruppo in le futuro." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Non blocar iste usator de iste gruppo" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Blocar iste usator de iste gruppo" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Error del base de datos al blocar le usator del gruppo." @@ -1857,11 +1955,15 @@ msgstr "Le usator non es blocate del gruppo." msgid "Error removing the block." msgstr "Error de remover le blocada." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Configuration de messageria instantanee" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1870,15 +1972,24 @@ msgstr "" "Tu pote inviar e reciper notas per [messages instantanee](%%doc.im%%) de " "Jabber/GTalk. Configura tu adresse e parametros hic infra." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "Messageria instantanee non disponibile." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Adresse de messageria instantanee" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Adresse Jabber/GTalk actualmente confirmate." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1887,11 +1998,9 @@ msgstr "" "Attende confirmation de iste adresse. Verifica tu conto Jabber/GTalk pro un " "message con ulterior instructiones. (Ha tu addite %s a tu lista de amicos?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Adresse de messageria instantanee" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1901,45 +2010,67 @@ msgstr "" "de adder %s a tu lista de amicos in tu cliente de messageria instantanee o " "in GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferentias" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Inviar me notas per Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar un nota quando mi stato de Jabber/GTalk cambia." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Inviar me responsas per Jabber/GTalk de personas al quales io non es " "subscribite." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar un MicroID pro mi adresse Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Preferentias confirmate." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Nulle ID de Jabber." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Non pote normalisar iste ID de Jabber" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "ID de Jabber non valide" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Isto es ja tu ID de Jabber." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Le ID de Jabber pertine ja a un altere usator." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1948,10 +2079,35 @@ msgstr "" "Un codice de confirmation ha essite inviate al adresse de messageria " "instantanee specificate. Tu debe approbar que %s invia messages a te." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Iste adresse de messageria instantanee es erronee." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Non poteva deler confirmation de e-mail." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Confirmation cancellate." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Isto non es tu ID de Jabber." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Le adresse ha essite removite." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1994,7 +2150,9 @@ msgstr "Invitar nove usatores" msgid "You are already subscribed to these users:" msgstr "Tu es a subscribite a iste usatores:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2118,7 +2276,9 @@ msgstr "Tu debe aperir un session pro facer te membro de un gruppo." msgid "No nickname or ID." msgstr "Nulle pseudonymo o ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s es ora membro del gruppo %2$s" @@ -2127,11 +2287,13 @@ msgstr "%1$s es ora membro del gruppo %2$s" msgid "You must be logged in to leave a group." msgstr "Tu debe aperir un session pro quitar un gruppo." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Tu non es membro de iste gruppo." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s quitava le gruppo %2$s" @@ -2244,12 +2406,12 @@ msgstr "Usa iste formulario pro crear un nove gruppo." msgid "New message" msgstr "Nove message" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Tu non pote inviar un message a iste usator." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Nulle contento!" @@ -2257,7 +2419,7 @@ msgstr "Nulle contento!" msgid "No recipient specified." msgstr "Nulle destinatario specificate." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2519,7 +2681,7 @@ msgid "6 or more characters" msgstr "6 o plus characteres" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirmar" @@ -3913,44 +4075,74 @@ msgstr "" msgid "Save site notice" msgstr "Salveguardar aviso del sito" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Parametros de SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Tu pote reciper messages SMS per e-mail ab %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS non es disponibile." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Adresse de messageria instantanee" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Numero de telephono actual e confirmate con servicio SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Iste numero de telephono attende confirmation." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Codice de confirmation" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Entra le codice que tu ha recipite in tu telephono." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Numero de telephono pro SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numero de telephono, sin punctuation o spatios, con indicativo" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferentias" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3958,23 +4150,34 @@ msgstr "" "Invia me notas per SMS; io comprende que io pote incurrer exorbitante costos " "de mi operator." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Preferentias confirmate." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Nulle numero de telephono." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Nulle operator seligite." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Isto es ja tu numero de telephono." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Iste numero de telephono pertine ja a un altere usator." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3982,23 +4185,42 @@ msgstr "" "Un codice de confirmation ha essite inviate al numero de telephono que tu ha " "addite. Vide in tu telephono le codice e le instructiones super como usar lo." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Iste codice de confirmation es incorrecte." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Confirmation cancellate." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Isto non es tu numero de telephono." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Numero de telephono pro SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Operator de telephonia mobile" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Selige un operator" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4008,7 +4230,8 @@ msgstr "" "que accepta SMS via e-mail ma non es listate hic, invia e-mail pro informar " "nos a %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Nulle codice entrate" @@ -5208,10 +5431,8 @@ msgstr "" "Accesso predefinite pro iste application: lectura solmente, o lectura e " "scriptura" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancellar" @@ -5287,34 +5508,40 @@ msgstr "Commando fallite" msgid "Notice with that id does not exist" msgstr "Non existe un nota con iste ID" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Usator non ha ultime nota" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Non poteva trovar un usator con pseudonymo %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Non poteva trovar un usator local con pseudonymo %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Pardono, iste commando non es ancora implementate." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Non ha multe senso pulsar te mesme!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Pulsata inviate a %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5325,57 +5552,55 @@ msgstr "" "Subscriptores: %2$s\n" "Notas: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Nota marcate como favorite." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Tu es ja membro de iste gruppo" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Non poteva facer le usator %s membro del gruppo %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s se faceva membro del gruppo %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Non poteva remover le usator %s del gruppo %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s quitava le gruppo %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Nomine complete: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Loco: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Pagina personal: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "A proposito: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5384,140 +5609,146 @@ msgstr "" "%s es un profilo remote; tu pote solmente inviar messages directe a usatores " "super le mesme servitor." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Message troppo longe - maximo es %d characteres, tu inviava %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "Message troppo longe - maximo es %1$d characteres, tu inviava %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Message directe a %s inviate" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Error durante le invio del message directe." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Non pote repeter tu proprie nota" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Iste nota ha ja essite repetite" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Nota de %s repetite" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Error durante le repetition del nota." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Nota troppo longe - maximo es %d characteres, tu inviava %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Responsa a %s inviate" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Errur durante le salveguarda del nota." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Specifica le nomine del usator al qual subscriber te" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossibile subscriber se a profilos OMB per medio de un commando." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Subscribite a %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Specifica le nomine del usator al qual cancellar le subscription" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Subscription a %s cancellate" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Commando non ancora implementate." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notification disactivate." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Non pote disactivar notification." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notification activate." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Non pote activar notification." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Le commando de apertura de session es disactivate" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Iste ligamine pote esser usate solmente un vice, e es valide durante " "solmente 2 minutas: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Subscription de %s cancellate" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Tu non es subscribite a alcuno." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Tu es subscribite a iste persona:" msgstr[1] "Tu es subscribite a iste personas:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Necuno es subscribite a te." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Iste persona es subscribite a te:" msgstr[1] "Iste personas es subscribite a te:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Tu non es membro de alcun gruppo." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Tu es membro de iste gruppo:" msgstr[1] "Tu es membro de iste gruppos:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6461,6 +6692,10 @@ msgstr "Nulle parametro return-to." msgid "Repeat this notice?" msgstr "Repeter iste nota?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Si" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Repeter iste nota" @@ -6647,47 +6882,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "alcun secundas retro" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "circa un minuta retro" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "circa %d minutas retro" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "circa un hora retro" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "circa %d horas retro" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "circa un die retro" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "circa %d dies retro" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "circa un mense retro" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "circa %d menses retro" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 135a7d2b7a..49e737db85 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-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:20+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:02+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -79,8 +79,13 @@ msgstr "" msgid "Save access settings" msgstr "Stillingar fyrir mynd" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -112,7 +117,7 @@ msgstr "Ekkert þannig merki." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Enginn svoleiðis notandi." @@ -347,7 +352,7 @@ msgstr "Engin staða fundin með þessu kenni." msgid "This status is already a favorite." msgstr "Þetta babl er nú þegar í uppáhaldi!" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Gat ekki búið til uppáhald." @@ -469,7 +474,7 @@ msgstr "Aðferð í forritsskilum fannst ekki!" msgid "You are already a member of that group." msgstr "Þú ert nú þegar meðlimur í þessum hópi" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -522,17 +527,17 @@ msgid "Invalid token." msgstr "Ótæk stærð." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -566,12 +571,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Bjóst ekki við innsendingu eyðublaðs." @@ -831,28 +839,45 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Nei" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Opna á þennan notanda" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Já" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Loka á þennan notanda" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Mistókst að vista upplýsingar um notendalokun" @@ -865,8 +890,8 @@ msgstr "Mistókst að vista upplýsingar um notendalokun" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Enginn þannig hópur." @@ -925,16 +950,24 @@ msgstr "Óþekkt gerð tölvupóstfangs %s" msgid "That address has already been confirmed." msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Gat ekki uppfært notanda." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Gat ekki eytt tölvupóstsstaðfestingu." @@ -992,12 +1025,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Gat ekki uppfært hóp." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Eyða þessu babli" @@ -1031,11 +1066,13 @@ msgstr "Eyða babli" msgid "Are you sure you want to delete this notice?" msgstr "Ertu viss um að þú viljir eyða þessu babli?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Eyða þessu babli" @@ -1060,7 +1097,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Eyða þessu babli" @@ -1178,15 +1216,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Vista" @@ -1324,32 +1360,45 @@ msgstr "" msgid "Options saved." msgstr "Valmöguleikar vistaðir." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Tölvupóstsstillingar" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Stilla það hvernig þú færð tölvupóst frá %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Tölvupóstfang" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Tölvupóstföng" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Núverandi staðfesta tölvupóstfangið." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Fjarlægja" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1357,107 +1406,141 @@ msgstr "" "Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og " "ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Hætta við" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "Tölvupóstföng" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Tölvupóstfang eins og \"notandi@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Bæta við" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Móttökutölvupóstur" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Sendu tölvupóst á þetta póstfang til þess að senda inn nýtt babl." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Búa til nýtt tölvupóstfang til að senda til. Skrifar yfir það gamla." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nýtt" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Stillingar" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Sendu mér tilkynningu varðandi nýjar áskriftir í gegnum tölvupóst." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Leyfa vinum að ýta við mér og senda mér tölvupóst." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Ég vil babla í gegnum tölvupóst." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Birta MicroID fyrir tölvupóstfangið mitt." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Stillingar vistaðar." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Ekkert tölvupóstfang." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Get ekki staðlað þetta tölvupóstfang" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Þetta er nú þegar tölvupóstfangið þitt." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Þetta tölvupóstfang tilheyrir öðrum notanda." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Gat ekki sett inn staðfestingarlykil." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1466,43 +1549,56 @@ msgstr "" "Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " "staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. " -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Engin staðfesting í bið sem þarf að hætta við." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Þetta er rangt snarskilaboðafang." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Hætt við staðfestingu." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Þetta er ekki tölvupóstfangið þitt." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Tölvupóstfangið hefur verið fjarlægt." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ekkert móttökutölvupóstfang." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Gat ekki uppfært skráarfærslu notanda." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Móttökutölvupóstfang fjarlægt." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nýju móttökutölvupóstfangi bætt við." @@ -1697,15 +1793,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1874,12 +1972,16 @@ msgstr "" msgid "Error removing the block." msgstr "Vill kom upp við að aflétta notendalokun." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "Snarskilaboðastillingar" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1889,16 +1991,26 @@ msgstr "" "[snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir " "neðan og stilltu notkunina." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "Þessi síða er ekki aðgengileg í " -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "Snarskilaboðafang" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Núverandi staðfesta Jabber/GTalk snarskilaboðafangið." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1908,12 +2020,9 @@ msgstr "" "þinn. Þar ættu að vera skilaboð með ítarlegri leiðbeiningum. (Hefurðu bætt %" "s við í vinalistann þinn?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "Snarskilaboðafang" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1923,44 +2032,66 @@ msgstr "" "viss um að bæta %s við í vinalistann þinn í snarskilaboðaforritinu þínu eða " "á GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Stillingar" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Sendur mér babl í gegnum Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Senda inn babl þegar Jabber/GTalk staðan breytist." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Birta MicroID fyrir Jabber/GTalk netfangið mitt." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Stillingar vistaðar." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Ekkert Jabber-kenni" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Get ekki staðlað þetta Jabber kenni" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Ekki tækt Jabber-kenni" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Þetta er nú þegar Jabber-kennið þitt." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber-kennið tilheyrir öðrum notanda." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1969,10 +2100,35 @@ msgstr "" "Staðfestingarlykill var sendur á snarskilaboðafangið sem þú varst að bæta " "við. Þú verður að leyfa %s að senda snarskilaboð til þín." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Þetta er rangt snarskilaboðafang." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Gat ekki eytt tölvupóstsstaðfestingu." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Hætt við staðfestingu." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Þetta er ekki Jabber-kennið þitt." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Tölvupóstfangið hefur verið fjarlægt." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -2014,7 +2170,9 @@ msgstr "Bjóða nýjum notendum að vera með" msgid "You are already subscribed to these users:" msgstr "Þú ert nú þegar í áskrift að þessum notendum:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2140,7 +2298,9 @@ msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp." msgid "No nickname or ID." msgstr "Ekkert stuttnefni." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s bætti sér í hópinn %s" @@ -2149,11 +2309,13 @@ msgstr "%s bætti sér í hópinn %s" msgid "You must be logged in to leave a group." msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Þú ert ekki meðlimur í þessum hópi." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s gekk úr hópnum %s" @@ -2271,12 +2433,12 @@ msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp." msgid "New message" msgstr "Ný skilaboð" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Þú getur ekki sent þessum notanda skilaboð." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Ekkert innihald!" @@ -2284,7 +2446,7 @@ msgstr "Ekkert innihald!" msgid "No recipient specified." msgstr "Enginn móttökuaðili tilgreindur." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2549,7 +2711,7 @@ msgid "6 or more characters" msgstr "6 eða fleiri tákn" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Staðfesta" @@ -3925,47 +4087,77 @@ msgstr "" msgid "Save site notice" msgstr "Babl vefsíðunnar" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "SMS stillingar" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Þú getur fengið SMS í gegnum tölvupóst frá %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "Þessi síða er ekki aðgengileg í " -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Snarskilaboðafang" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Núverandi staðfesta SMS símanúmerið." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Býð eftir staðfestingu varðandi þetta símanúmer." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Staðfestingarlykill" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Sláðu inn lykilinn sem þú fékkst í símann þinn." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Staðfesta" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "SMS símanúmer" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Símanúmer, með svæðisnúmeri ef við á, án greinarmerkja eða bila" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Stillingar" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3973,45 +4165,75 @@ msgstr "" "Sendu mér babl í gegnum SMS. Ég veit að það er möguleiki að " "farsímafyrirtækið rukki fyrir móttöku á SMSunum." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Stillingar vistaðar." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Ekkert símanúmer." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Ekkert farsímafélag valið." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Þetta er nú þegar símanúmerið þitt." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Þetta símanúmer tilheyri nú þegar öðrum notanda." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Þetta er rangur staðfestingarlykill." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Hætt við staðfestingu." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Þetta er ekki símanúmerið þitt." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS símanúmer" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Farsímafyrirtæki" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Veldu farsímafyrirtæki" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4021,7 +4243,8 @@ msgstr "" "gegnum tölvupóst sem er ekki í þessum lista, sendu okkur tölvupóst í %s og " "láttu okkur vita." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Enginn lykill sleginn inn" @@ -5253,10 +5476,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Hætta við" @@ -5333,34 +5554,40 @@ msgstr "Misheppnuð skipun" msgid "Notice with that id does not exist" msgstr "Enginn persónuleg síða með þessu einkenni." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Notandi hefur ekkert nýtt babl" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Fyrirgefðu en þessi skipun hefur ekki enn verið útbúin." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Ýtt við notanda" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5368,203 +5595,207 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Babl gert að uppáhaldi." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Þú ert nú þegar meðlimur í þessum hópi" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" msgstr "Gat ekki bætt notandanum %s í hópinn %s" -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s bætti sér í hópinn %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s gekk úr hópnum %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Fullt nafn: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Staðsetning: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Heimasíða: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Um: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Bein skilaboð send til %s" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Villa kom upp við að senda bein skilaboð" -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "Get ekki kveikt á tilkynningum." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Eyða þessu babli" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Babl sent inn" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "Vandamál komu upp við að vista babl." -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "Svara þessu babli" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "Vandamál komu upp við að vista babl." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Þú ert ekki áskrifandi." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Nú ert þú áskrifandi að %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Nú ert þú ekki lengur áskrifandi að %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Skipun hefur ekki verið fullbúin" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Tilkynningar af." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Get ekki slökkt á tilkynningum." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Tilkynningar á." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Get ekki kveikt á tilkynningum." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Nú ert þú ekki lengur áskrifandi að %s" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Þú ert ekki áskrifandi." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:" msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér." msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér." -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "Þú ert ekki meðlimur í þessum hópi." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Þú ert ekki meðlimur í þessum hópi." msgstr[1] "Þú ert ekki meðlimur í þessum hópi." -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6414,6 +6645,10 @@ msgstr "Ekkert einkenni gefið upp." msgid "Repeat this notice?" msgstr "Svara þessu babli" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Já" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6608,47 +6843,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "fyrir um %d mínútum síðan" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "fyrir um %d klukkutímum síðan" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "fyrir um einum degi síðan" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "fyrir um %d dögum síðan" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "fyrir um %d mánuðum síðan" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 93795b7bd9..ba89872996 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:26+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:12+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -74,8 +74,13 @@ msgstr "Chiuso" msgid "Save access settings" msgstr "Salva impostazioni di accesso" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Salva" @@ -83,7 +88,6 @@ msgstr "Salva" #. 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 -#, fuzzy msgid "No such page." msgstr "Pagina inesistente." @@ -106,7 +110,7 @@ msgstr "Pagina inesistente." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utente inesistente." @@ -236,13 +240,12 @@ msgid "This method requires a POST." msgstr "Questo metodo richiede POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "È necessario specificare un parametro chiamato \"device\" con un valore tra: " -"\"sms\", \"im\" o \"none\"" +"\"sms\", \"im\" o \"none\"." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -349,7 +352,7 @@ msgstr "Nessuno messaggio trovato con quel ID." msgid "This status is already a favorite." msgstr "Questo messaggio è già un preferito." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Impossibile creare un preferito." @@ -442,9 +445,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Troppi alias! Massimo %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Alias non valido: \"%s\"" +msgstr "Alias non valido: \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -460,15 +463,14 @@ msgstr "L'alias non può essere lo stesso del soprannome." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "Gruppo non trovato!" +msgstr "Gruppo non trovato." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." msgstr "Fai già parte di quel gruppo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "L'amministratore ti ha bloccato l'accesso a quel gruppo." @@ -519,17 +521,17 @@ msgid "Invalid token." msgstr "Token non valido." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -563,12 +565,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "Il token di richiesta %s è stato rifiutato o revocato." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Invio del modulo inaspettato." @@ -828,27 +833,44 @@ msgstr "" "tuoi messaggi, non potrà più abbonarsi e non riceverai notifica delle @-" "risposte che ti invierà." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Non bloccare questo utente" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Sì" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blocca questo utente" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Salvataggio delle informazioni per il blocco non riuscito." @@ -861,8 +883,8 @@ msgstr "Salvataggio delle informazioni per il blocco non riuscito." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Nessuna gruppo." @@ -894,9 +916,9 @@ msgstr "Sblocca questo utente" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Invia a " +msgstr "Invia a %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -912,25 +934,33 @@ msgstr "Quel codice di conferma non è per te!" #. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. #: actions/confirmaddress.php:91 -#, fuzzy, php-format +#, php-format msgid "Unrecognized address type %s." -msgstr "Tipo di indirizzo %s non riconosciuto" +msgstr "Tipo di indirizzo %s non riconosciuto." #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." msgstr "Quell'indirizzo è già stato confermato." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Impossibile aggiornare l'utente." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Impossibile eliminare l'email di conferma." @@ -984,11 +1014,13 @@ msgstr "" "Vuoi eliminare questa applicazione? Questa azione eliminerà tutti i dati " "riguardo all'applicazione dal database, comprese tutte le connessioni utente." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Non eliminare l'applicazione" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Elimina l'applicazione" @@ -1023,11 +1055,13 @@ msgstr "Elimina messaggio" msgid "Are you sure you want to delete this notice?" msgstr "Vuoi eliminare questo messaggio?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Non eliminare il messaggio" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -1051,7 +1085,8 @@ msgstr "" "Vuoi eliminare questo utente? Questa azione eliminerà tutti i dati " "dell'utente dal database, senza una copia di sicurezza." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Elimina questo utente" @@ -1071,9 +1106,9 @@ msgid "Invalid logo URL." msgstr "URL del logo non valido." #: actions/designadminpanel.php:280 -#, fuzzy, php-format +#, php-format msgid "Theme not available: %s." -msgstr "Tema non disponibile: %s" +msgstr "Tema non disponibile: %s." #: actions/designadminpanel.php:376 msgid "Change logo" @@ -1164,15 +1199,13 @@ msgid "Reset back to default" msgstr "Reimposta i valori predefiniti" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Salva" @@ -1298,31 +1331,43 @@ msgstr "Impossibile creare gli alias." msgid "Options saved." msgstr "Opzioni salvate." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Impostazioni email" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Gestisci la ricezione delle email da %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Indirizzo" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Indirizzo email" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Indirizzo email attualmente confermato." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Rimuovi" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1331,109 +1376,143 @@ msgstr "" "posta (e anche la posta indesiderata!) per un messaggio con ulteriori " "istruzioni." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +msgctxt "BUTTON" msgid "Cancel" msgstr "Annulla" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Indirizzo e-mail" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Indirizzo email, del tipo \"nomeutente@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Aggiungi" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Email di ricezione" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Invia le email a questo indirizzo per scrivere nuovi messaggi." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Crea un nuovo indirizzo email a cui inviare i messaggi e rimuovi quello " "vecchio." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nuovo" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferenze" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Inviami avvisi di nuovi abbonamenti via email" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Inviami un'email quando qualcuno mi invia una \"@-risposta\"" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Consenti ai miei amici di richiamarmi e inviami un'email" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Voglio inviare i messaggi via email" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Pubblica un MicroID per il mio indirizzo email" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferenze salvate." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Preferenze dell'aspetto salvate." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Nessun indirizzo email." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Impossibile normalizzare quell'indirizzo email" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non è un indirizzo email valido." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Quello è già il tuo indirizzo email." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Quell'indirizzo email appartiene già a un altro utente." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Impossibile inserire il codice di conferma." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1442,43 +1521,56 @@ msgstr "" "Controlla la tua casella di posta (e anche la posta indesiderata!) per il " "codice e le istruzioni su come usarlo." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nessuna conferma da annullare." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Quello è l'indirizzo di messaggistica sbagliato." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Conferma annullata." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Quello non è il tuo indirizzo email." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "L'indirizzo è stato rimosso." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Nessun indirizzo email di ricezione." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Impossibile aggiornare il record dell'utente." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Indirizzo email di ricezione rimosso." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nuovo indirizzo email di ricezione aggiunto." @@ -1598,9 +1690,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Il servizio remoto usa una versione del protocollo OMB sconosciuta." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Errore nell'aggiornare il profilo remoto" +msgstr "Errore nell'aggiornare il profilo remoto." #: actions/getfile.php:79 msgid "No such file." @@ -1670,15 +1761,17 @@ msgstr "" "dal gruppo, non potrà più inviare messaggi e non potrà più iscriversi al " "gruppo." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Non bloccare l'utente da questo gruppo" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Blocca l'utente da questo gruppo" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Errore del database nel bloccare l'utente dal gruppo." @@ -1861,11 +1954,15 @@ msgstr "L'utente non è bloccato dal gruppo." msgid "Error removing the block." msgstr "Errore nel rimuovere il blocco." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Impostazioni messaggistica istantanea" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1875,15 +1972,24 @@ msgstr "" "istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le " "impostazioni qui di seguito." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "Messaggistica istantanea non disponibile." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Indirizzo di messaggistica istantanea" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Indirizzo Jabber/GTalk attualmente confermato." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1893,11 +1999,9 @@ msgstr "" "GTalk per un messaggio con ulteriori istruzioni. Hai aggiunto %s al tuo " "elenco contatti?" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Indirizzo di messaggistica istantanea" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1907,43 +2011,65 @@ msgstr "" "cosa, assicurati di aggiungere %s all'elenco dei contatti nel tuo programma " "di messaggistica o su GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferenze" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Inviami i messaggi via Jabber/GTalk" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Inviami le risposte delle persone a cui sono abbonato via Jabber/GTalk" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Pubblica un MicroID per il mio indirizzo Jabber/GTalk" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Preferenze salvate." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Nessun ID di Jabber." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Impossibile normalizzare quell'ID Jabber" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Non è un ID Jabber valido" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Quello è già il tuo ID di Jabber." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "ID Jabber già assegnato a un altro utente." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1952,10 +2078,35 @@ msgstr "" "Un codice di conferma è stato inviato all'indirizzo di messaggistica " "istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Quello è l'indirizzo di messaggistica sbagliato." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Impossibile eliminare l'email di conferma." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Conferma annullata." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Quello non è il tuo ID di Jabber." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "L'indirizzo è stato rimosso." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1977,9 +2128,9 @@ msgid "Invites have been disabled." msgstr "Gli inviti sono stati disabilitati." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s" +msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s." #: actions/invite.php:72 #, php-format @@ -1998,7 +2149,9 @@ msgstr "Invita nuovi utenti" msgid "You are already subscribed to these users:" msgstr "Hai già un abbonamento a questi utenti:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2121,7 +2274,9 @@ msgstr "Devi eseguire l'accesso per iscriverti a un gruppo." msgid "No nickname or ID." msgstr "Nessun soprannome o ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s fa ora parte del gruppo %2$s" @@ -2130,11 +2285,13 @@ msgstr "%1$s fa ora parte del gruppo %2$s" msgid "You must be logged in to leave a group." msgstr "Devi eseguire l'accesso per lasciare un gruppo." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Non fai parte di quel gruppo." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ha lasciato il gruppo %2$s" @@ -2209,9 +2366,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Impossibile rendere %1$s un amministratore del gruppo %2$s" #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Nessun messaggio corrente" +msgstr "Nessun messaggio corrente." #: actions/newapplication.php:52 msgid "New Application" @@ -2245,12 +2401,12 @@ msgstr "Usa questo modulo per creare un nuovo gruppo." msgid "New message" msgstr "Nuovo messaggio" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Non puoi inviare un messaggio a questo utente." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Nessun contenuto!" @@ -2258,7 +2414,7 @@ msgstr "Nessun contenuto!" msgid "No recipient specified." msgstr "Nessun destinatario specificato." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." @@ -2375,9 +2531,9 @@ msgid "You are not a user of that application." msgstr "Non sei un utente di quella applicazione." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "Impossibile revocare l'accesso per l'applicazione: " +msgstr "Impossibile revocare l'accesso per l'applicazione: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2390,9 +2546,8 @@ msgstr "" "loro applicazioni " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Il messaggio non ha un profilo" +msgstr "Il messaggio non ha un profilo." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2401,15 +2556,15 @@ msgstr "Stato di %1$s su %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "tipo di contenuto " +msgstr "Tipo di contenuto %s non supportato." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "Solo URL %s attraverso HTTP semplice." #. TRANS: Client error on an API request with an unsupported data format. #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 @@ -2518,7 +2673,7 @@ msgid "6 or more characters" msgstr "6 o più caratteri" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Conferma" @@ -2564,24 +2719,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Percorso e impostazioni server per questo sito StatusNet." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Directory del tema non leggibile: %s" +msgstr "Directory del tema non leggibile: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Directory delle immagini degli utenti non scrivibile: %s" +msgstr "Directory delle immagini degli utenti non scrivibile: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Directory degli sfondi non scrivibile: %s" +msgstr "Directory degli sfondi non scrivibile: %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Directory delle localizzazioni non leggibile: %s" +msgstr "Directory delle localizzazioni non leggibile: %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2721,9 +2876,9 @@ msgid "People search" msgstr "Cerca persone" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "Non è un'etichetta valida di persona: %s" +msgstr "Non è un'etichetta valida di persona: %s." #: actions/peopletag.php:142 #, php-format @@ -2731,9 +2886,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utenti auto-etichettati con %1$s - pagina %2$d" #: actions/postnotice.php:95 -#, fuzzy msgid "Invalid notice content." -msgstr "Contenuto del messaggio non valido" +msgstr "Contenuto del messaggio non valido." #: actions/postnotice.php:101 #, php-format @@ -2881,9 +3035,9 @@ msgid "Settings saved." msgstr "Impostazioni salvate." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Oltre il limite della pagina (%s)" +msgstr "Oltre il limite della pagina (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3141,7 +3295,6 @@ msgid "Invalid username or password." msgstr "Nome utente o password non valido." #: actions/register.php:343 -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " @@ -3178,13 +3331,14 @@ msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" #: actions/register.php:494 -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -" a eccezione di questi dati personali: password, indirizzo email, indirizzo " -"messaggistica istantanea e numero di telefono." +"I miei testi e file sono disponibili nei termini di %s a eccezione di questi " +"dati personali: password, indirizzo email, indirizzo messaggistica " +"istantanea e numero di telefono." #: actions/register.php:542 #, php-format @@ -3801,7 +3955,6 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "Il limite minimo del testo è di 0 caratteri (illimitato)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." msgstr "Il limite per i duplicati deve essere di 1 o più secondi." @@ -3894,9 +4047,8 @@ msgid "Unable to save site notice." msgstr "Impossibile salvare il messaggio del sito." #: actions/sitenoticeadminpanel.php:113 -#, fuzzy msgid "Max length for the site-wide notice is 255 chars." -msgstr "La dimensione massima del messaggio del sito è di 255 caratteri" +msgstr "La dimensione massima del messaggio del sito è di 255 caratteri." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" @@ -3910,44 +4062,74 @@ msgstr "Testo messaggio del sito (massimo 255 caratteri, HTML consentito)" msgid "Save site notice" msgstr "Salva messaggio" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Impostazioni SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Puoi ricevere messaggi SMS attraverso l'email da %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "Il servizio SMS non è disponibile." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Indirizzo di messaggistica istantanea" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Numero di telefono attualmente confermato per gli SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "In attesa della conferma per questo numero di telefono." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Codice di conferma" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Inserisci il codice che hai ricevuto sul tuo telefono." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Conferma" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Numero di telefono per SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferenze" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3955,23 +4137,34 @@ msgstr "" "Inviami avvisi via SMS: comprendo che potrei incorrere in esorbitanti " "bollette da parte del mio operatore" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Preferenze salvate." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Nessun numero di telefono." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Nessun operatore selezionato." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Quello è già il tuo numero di telefono." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Quel numero di telefono appartiene già a un altro utente." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3980,23 +4173,42 @@ msgstr "" "aggiunto. Controlla il tuo telefono per il codice e le istruzioni su come " "usarlo." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Quello è il numero di conferma errato." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Conferma annullata." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Quello non è il tuo numero di telefono." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Numero di telefono per SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Operatore telefonico" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Seleziona un operatore" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4005,7 +4217,8 @@ msgstr "" "Operatore di telefonia mobile. Se conosci un operatore che accetta gli SMS " "via email, ma non è elencato qui, scrivici a %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Nessun codice inserito" @@ -4032,7 +4245,6 @@ msgid "Invalid snapshot report URL." msgstr "URL di segnalazione snapshot non valido." #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" msgstr "A caso quando avviene un web hit" @@ -4269,7 +4481,6 @@ msgid "User is not silenced." msgstr "L'utente non è zittito." #: actions/unsubscribe.php:77 -#, fuzzy msgid "No profile ID in request." msgstr "Nessun ID di profilo nella richiesta." @@ -4623,9 +4834,9 @@ msgstr "Impossibile aggiornare il messaggio con il nuovo URI." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" -msgstr "Errore del DB nell'inserire un hashtag: %s" +msgstr "Errore del database nell'inserire un hashtag: %s" #: classes/Notice.php:245 msgid "Problem saving notice. Too long." @@ -4947,13 +5158,13 @@ msgstr "Licenza del software StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** è un servizio di microblog offerto da [%%site.broughtby%%]" -"(%%site.broughtbyurl%%). " +"(%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 @@ -5005,6 +5216,8 @@ msgstr "" #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" +"Tutti i contenuti e i dati di %1$s sono disponibili nei termini della " +"licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). #: lib/action.php:1182 @@ -5207,22 +5420,18 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Annulla" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" msgstr "Lettura-scrittura" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" msgstr "Sola lettura" @@ -5230,11 +5439,10 @@ msgstr "Sola lettura" #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Approvata %1$s - Accesso \"%2$s\"." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" @@ -5286,34 +5494,40 @@ msgstr "Comando non riuscito" msgid "Notice with that id does not exist" msgstr "Un messaggio con quel ID non esiste" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "L'utente non ha un ultimo messaggio." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Impossibile trovare un utente col soprannome %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Impossibile trovare un utente locale col soprannome %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Questo comando non è ancora implementato." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Non ha molto senso se cerchi di richiamarti!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Richiamo inviato a %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5324,57 +5538,55 @@ msgstr "" "Abbonati: %2$s\n" "Messaggi: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Messaggio indicato come preferito." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Fai già parte di quel gruppo" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s fa ora parte del gruppo %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %2$s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%1$s ha lasciato il gruppo %2$s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Posizione: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Pagina web: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Informazioni: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5383,140 +5595,146 @@ msgstr "" "%s è un profilo remoto. È possibile inviare messaggi privati solo agli " "utenti sullo stesso server." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Messaggio troppo lungo: massimo %d caratteri, inviati %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Messaggio diretto a %s inviato." -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Errore nell'inviare il messaggio diretto." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Impossibile ripetere un proprio messaggio" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Hai già ripetuto quel messaggio" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Messaggio da %s ripetuto" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Errore nel ripetere il messaggio." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Messaggio troppo lungo: massimo %d caratteri, inviati %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Risposta a %s inviata" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Errore nel salvare il messaggio." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Specifica il nome dell'utente a cui abbonarti." -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossibile abbonarsi ai profili OMB attraverso un comando." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Abbonati a %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento." -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Abbonamento a %s annullato" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Comando non ancora implementato." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notifiche disattivate." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Impossibile disattivare le notifiche." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notifiche attivate." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Impossibile attivare le notifiche." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Il comando di accesso è disabilitato" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Questo collegamento è utilizzabile una sola volta ed è valido solo per 2 " "minuti: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "%s ha annullato l'abbonamento" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Il tuo abbonamento è stato annullato." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Persona di cui hai già un abbonamento:" msgstr[1] "Persone di cui hai già un abbonamento:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Nessuno è abbonato ai tuoi messaggi." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Questa persona è abbonata ai tuoi messaggi:" msgstr[1] "Queste persone sono abbonate ai tuoi messaggi:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Non fai parte di alcun gruppo." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Non fai parte di questo gruppo:" msgstr[1] "Non fai parte di questi gruppi:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5968,9 +6186,10 @@ msgstr "Conferma SMS" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "In attesa della conferma per questo numero di telefono." +msgstr "" +"%s: conferma che questo numero di telefono sia tuo utilizzando questo codice:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 @@ -6099,6 +6318,9 @@ msgid "" "\n" "\t%s" msgstr "" +"L'intera conversazione può essere letta qui:\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format @@ -6463,6 +6685,10 @@ msgstr "Nessun argomento return-to." msgid "Repeat this notice?" msgstr "Ripetere questo messaggio?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Sì" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Ripeti questo messaggio" @@ -6649,47 +6875,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderatore" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "pochi secondi fa" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "circa un minuto fa" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "circa %d minuti fa" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "circa un'ora fa" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "circa %d ore fa" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "circa un giorno fa" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "circa %d giorni fa" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "circa un mese fa" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "circa %d mesi fa" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 91d52c69e4..91c8459211 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:33+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:15+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -74,8 +74,13 @@ msgstr "閉じられた" msgid "Save access settings" msgstr "アクセス設定の保存" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -107,7 +112,7 @@ msgstr "そのようなページはありません。" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "そのようなユーザはいません。" @@ -347,7 +352,7 @@ msgstr "そのIDのステータスが見つかりません。" msgid "This status is already a favorite." msgstr "このステータスはすでにお気に入りです。" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "お気に入りを作成できません。" @@ -467,7 +472,7 @@ msgstr "グループが見つかりません!" msgid "You are already a member of that group." msgstr "すでにこのグループのメンバーです。" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "管理者によってこのグループからブロックされています。" @@ -518,17 +523,17 @@ msgid "Invalid token." msgstr "不正なトークン。" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -561,12 +566,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "リクエストトークン%sは、拒否されて、取り消されました。" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "予期せぬフォーム送信です。" @@ -823,27 +831,44 @@ msgstr "" "たからフォローを外されるでしょう、将来、あなたにフォローできないで、あなたは" "どんな @-返信 についてもそれらから通知されないでしょう。" -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "No" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "このユーザをアンブロックする" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Yes" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "このユーザをブロックする" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "ブロック情報の保存に失敗しました。" @@ -856,8 +881,8 @@ msgstr "ブロック情報の保存に失敗しました。" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "そのようなグループはありません。" @@ -916,16 +941,24 @@ msgstr "不明なアドレスタイプ %s" msgid "That address has already been confirmed." msgstr "そのアドレスは既に承認されています。" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "ユーザを更新できません" -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "メール承認を削除できません" @@ -980,11 +1013,13 @@ msgstr "" "あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ" "ベースからユーザに関するすべてのデータをクリアします。" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "このアプリケーションを削除しないでください" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "このアプリケーションを削除" @@ -1019,11 +1054,13 @@ msgstr "つぶやき削除" msgid "Are you sure you want to delete this notice?" msgstr "本当にこのつぶやきを削除しますか?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "このつぶやきを削除できません。" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "このつぶやきを削除" @@ -1047,7 +1084,8 @@ msgstr "" "あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ" "ベースからユーザに関するすべてのデータをクリアします。" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "このユーザを削除" @@ -1160,15 +1198,13 @@ msgid "Reset back to default" msgstr "デフォルトへリセットする" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1294,31 +1330,43 @@ msgstr "別名を作成できません。" msgid "Options saved." msgstr "オプションが保存されました。" -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "メール設定" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "%%site.name%% からのメールを管理。" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "住所" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "メールアドレス" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "現在確認されているメールアドレス。" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "削除" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1326,109 +1374,144 @@ msgstr "" "このアドレスは承認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" "かれたメッセージが届いていないか確認してください。" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "中止" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "メールアドレス" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "メールアドレス、\"UserName@example.org\" のような" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "追加" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "入ってくるメール" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "新しいつぶやき投稿にこのアドレスへメールする" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "投稿のための新しいEメールアドレスを作ります; 古い方を取り消します。" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "New" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "設定" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "メールで新規フォローの通知を私に送ってください。" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "だれかがお気に入りとして私のつぶやきを加えたら、メールを私に送ってください。" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" "だれかがプライベート・メッセージを私に送るときには、メールを私に送ってくださ" "い。" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "だれかが\"@-返信\"を私を送るときには、メールを私に送ってください、" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "友達が私に合図とメールを送ることを許可する。" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "メールでつぶやきを投稿したい。" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "私のメールアドレスのためにMicroIDを発行してください。" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "設定が保存されました。" +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "デザイン設定が保存されました。" -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "メールアドレスがありません。" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "そのメールアドレスを正規化できません" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "有効なメールアドレスではありません。" -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "これはすでにあなたのメールアドレスです。" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "このメールアドレスは既に他の人が使っています。" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "承認コードを追加できません" -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1437,43 +1520,56 @@ msgstr "" "ムボックス)にコードとそれをどう使うのかという指示が届いていないか確認してく" "ださい。" -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "承認待ちのものはありません。" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "その IM アドレスは不正です。" -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "承認作業が中止されました。" -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "これはあなたのメールアドレスではありません。" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "アドレスは削除されました。" -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "入ってくるメールアドレスではありません。" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "ユーザレコードを更新できません。" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "入ってくるメールアドレスは削除されました。" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "新しい入ってくるメールアドレスが追加されました。" @@ -1668,15 +1764,17 @@ msgstr "" "本当にユーザ %1$s をグループ %2$s からブロックしますか? 彼らはグループから削" "除される、投稿できない、グループをフォローできなくなります。" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "このグループからこのユーザをブロックしない" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "このグループからこのユーザをブロック" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "グループからのブロックユーザのデータベースエラー" @@ -1859,11 +1957,15 @@ msgstr "ユーザはグループからブロックされていません。" msgid "Error removing the block." msgstr "ブロックの削除エラー" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "IM設定" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1872,15 +1974,24 @@ msgstr "" "Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で" "す。下のアドレスを設定して下さい。" -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM が利用不可。" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IMアドレス" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "確認された最新の Jabber/GTakk アドレス" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1889,11 +2000,9 @@ msgstr "" "このアドレスは承認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれ" "たメッセージを確認してください。(%s を友人リストに追加しましたか?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "IMアドレス" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1902,45 +2011,67 @@ msgstr "" "\"UserName@example.org\" といった Jabber または GTalk のアドレス。まず、%s を" "IMクライアントやGTalkに追加して下さい。" -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "設定" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk で私に通知を送って下さい。" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Jabber/GTalkを通して回答を、私がフォローされていない人々から私に送ってくださ" "い。" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "私のJabber/GTalkアドレスのためにMicroIDを発行してください。" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "設定が保存されました。" + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Jabbar ID はありません。" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "その Jabbar ID を正規化できません" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "有効な Jabber ID ではありません。" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "その Jabber ID は既にあなたのものです。" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID jは既に別のユーザが使用しています。" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1949,10 +2080,35 @@ msgstr "" "承認コードを入力された IM アドレスに送信しました。あなたにメッセージを送れる" "ようにするには%sを承認してください。" -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "その IM アドレスは不正です。" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "メール承認を削除できません" + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "承認作業が中止されました。" + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "その Jabber ID はあなたのものではありません。" +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "アドレスは削除されました。" + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1994,7 +2150,9 @@ msgstr "新しいユーザを招待" msgid "You are already subscribed to these users:" msgstr "すでにこれらのユーザをフォローしています:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2120,7 +2278,9 @@ msgstr "グループに入るためにはログインしなければなりませ msgid "No nickname or ID." msgstr "ニックネームがありません。" -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s はグループ %2$s に参加しました" @@ -2129,11 +2289,13 @@ msgstr "%1$s はグループ %2$s に参加しました" msgid "You must be logged in to leave a group." msgstr "グループから離れるにはログインしていなければなりません。" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "あなたはそのグループのメンバーではありません。" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s はグループ %2$s に残りました。" @@ -2243,12 +2405,12 @@ msgstr "このフォームを使って新しいグループを作成します。 msgid "New message" msgstr "新しいメッセージ" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "このユーザにメッセージを送ることはできません。" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "コンテンツがありません!" @@ -2256,7 +2418,7 @@ msgstr "コンテンツがありません!" msgid "No recipient specified." msgstr "受取人が書かれていません。" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2516,7 +2678,7 @@ msgid "6 or more characters" msgstr "6文字以上" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "パスワード確認" @@ -3916,45 +4078,75 @@ msgstr "" msgid "Save site notice" msgstr "サイトつぶやき" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "SMS 設定" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "あなたは %%site.name%% からメールでSMSメッセージを受け取ることができます。" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS は利用できません。" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IMアドレス" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "現在の確認された SMS 可能な電話番号。" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "この電話番号は確認待ちです。" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "確認コード" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "あなたがあなたの電話で受け取ったコードを入れてください。" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "パスワード確認" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "SMS 電話番号" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "電話番号、句読点またはスペースがない、市街番号付き" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "設定" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3962,23 +4154,34 @@ msgstr "" "SMSを通してつぶやきを私に送ってください; 私は、私のキャリアから法外な料金を被" "るかもしれないのを理解しています。" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "設定が保存されました。" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "電話番号がありません。" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "キャリアが選択されていません。" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "これはすでにあなたの電話番号です。" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "この電話番号はすでに他のユーザに使われています。" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3986,23 +4189,42 @@ msgstr "" "あなたが加えた電話番号に確認コードを送りました。 どうそれを使用するかに関する" "コードと指示のために電話をチェックしてください。" -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "それは間違った確認番号です。" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "承認作業が中止されました。" + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "それはあなたの電話番号ではありません。" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS 電話番号" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "携帯電話会社" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "キャリア選択" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4012,7 +4234,8 @@ msgstr "" "載されていないキャリアを知っているなら、メールを送って、%sで私たちに知らせて" "ください。" -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "コードが入力されていません" @@ -5228,10 +5451,8 @@ msgstr "" "このアプリケーションのためのデフォルトアクセス: リードオンリー、またはリード" "ライト" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "中止" @@ -5307,34 +5528,40 @@ msgstr "コマンド失敗" msgid "Notice with that id does not exist" msgstr "その ID によるつぶやきは存在していません" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "ユーザはまだつぶやいていません" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "ユーザを更新できません" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "ユーザを更新できません" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "すみません、このコマンドはまだ実装されていません。" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "それは自分自身への合図で多くは意味がありません!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "%s へ合図を送りました" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5345,193 +5572,197 @@ msgstr "" "フォローされている: %2$s\n" "つぶやき: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "お気に入りにされているつぶやき。" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "あなたは既にそのグループに参加しています。" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "ユーザ %s はグループ %s に参加できません" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "ユーザ %1$s はグループ %2$s に参加できません。" -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s はグループ %s に参加しました" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "ユーザ %s をグループ %s から削除することができません" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s はグループ %s に残りました。" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "フルネーム: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "場所: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "ホームページ: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "About: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "メッセージが長すぎます - 最大 %d 字、あなたが送ったのは %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "メッセージが長すぎます - 最大 %1$d 字、あなたが送ったのは %2$d。" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "ダイレクトメッセージを %s に送りました" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "ダイレクトメッセージ送信エラー。" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "自分のつぶやきを繰り返すことはできません" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "すでにこのつぶやきは繰り返されています" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "%s からつぶやきが繰り返されています" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "つぶやき繰り返しエラー" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "つぶやきが長すぎます - 最大 %d 字、あなたが送ったのは %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "%s へ返信を送りました" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "つぶやき保存エラー。" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "フォローするユーザの名前を指定してください" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "あなたはそのプロファイルにフォローされていません。" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "%s をフォローしました" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "フォローをやめるユーザの名前を指定してください" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "%s のフォローをやめる" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "コマンドはまだ実装されていません。" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "通知オフ。" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "通知をオフできません。" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "通知オン。" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "通知をオンできません。" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "ログインコマンドが無効になっています。" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "このリンクは、かつてだけ使用可能であり、2分間だけ良いです: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "%s のフォローをやめる" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "あなたはだれにもフォローされていません。" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "あなたはこの人にフォローされています:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "誰もフォローしていません。" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "この人はあなたにフォローされている:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "あなたはどのグループのメンバーでもありません。" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "あなたはこのグループのメンバーではありません:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6444,6 +6675,10 @@ msgstr "return-to 引数がありません。" msgid "Repeat this notice?" msgstr "このつぶやきを繰り返しますか?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Yes" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "このつぶやきを繰り返す" @@ -6634,47 +6869,57 @@ msgctxt "role" msgid "Moderator" msgstr "管理" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "数秒前" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "約 1 分前" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "約 %d 分前" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "約 1 時間前" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "約 %d 時間前" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "約 1 日前" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "約 %d 日前" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "約 1 ヵ月前" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "約 %d ヵ月前" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "約 1 年前" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index fe03c831a9..7df910a59f 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:38+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:18+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -71,8 +71,13 @@ msgstr "폐쇄" msgid "Save access settings" msgstr "접근 설정을 저장" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "저장" @@ -103,7 +108,7 @@ msgstr "해당하는 페이지 없음" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "해당하는 이용자 없음" @@ -336,7 +341,7 @@ msgstr "그 ID로 발견된 상태가 없습니다." msgid "This status is already a favorite." msgstr "이 소식은 이미 관심소식으로 등록되어 있습니다." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "관심소식을 생성할 수 없습니다." @@ -455,7 +460,7 @@ msgstr "그룹을 찾을 수 없습니다." msgid "You are already a member of that group." msgstr "당신은 이미 이 그룹의 멤버입니다." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -507,17 +512,17 @@ msgid "Invalid token." msgstr "옳지 않은 크기" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -549,12 +554,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "잘못된 폼 제출" @@ -813,27 +821,44 @@ msgstr "" "정말 이용자를 차단하시겠습니까? 차단된 이용자는 구독해제되고, 이후 당신을 구" "독할 수 없으며, 차단된 이용자로부터 @-답장의 통보를 받지 않게 됩니다." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "아니오" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "이용자를 차단하지 않는다." -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "네, 맞습니다." -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "이 사용자 차단하기" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "정보차단을 저장하는데 실패했습니다." @@ -846,8 +871,8 @@ msgstr "정보차단을 저장하는데 실패했습니다." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "그러한 그룹이 없습니다." @@ -907,16 +932,24 @@ msgstr "인식되지않은 주소유형 %s" msgid "That address has already been confirmed." msgstr "그 주소는 이미 승인되었습니다." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "사용자를 업데이트 할 수 없습니다." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "이메일 승인을 삭제 할 수 없습니다." @@ -973,12 +1006,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "이 통지를 지울 수 없습니다." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "이 게시글 삭제하기" @@ -1014,12 +1049,14 @@ msgstr "통지 삭제" msgid "Are you sure you want to delete this notice?" msgstr "정말로 통지를 삭제하시겠습니까?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -1043,7 +1080,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "이 게시글 삭제하기" @@ -1159,15 +1197,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "저장" @@ -1302,31 +1338,43 @@ msgstr "좋아하는 게시글을 생성할 수 없습니다." msgid "Options saved." msgstr "옵션들이 저장되었습니다." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "이메일 설정" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "%%site.name%%에서 어떻게 이메일을 받을지 정하십시오." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "주소" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "이메일 주소" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "확인된 최신의 이메일 계정" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "삭제" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1334,107 +1382,142 @@ msgstr "" "이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 " "주시기 바랍니다." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "취소" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "이메일 주소" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "\"UserName@example.org\" 와 같은 이메일 계정" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "추가" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "받은 이메일" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "새로운 통지를 올리려면 이 주소로 메일을 보내십시오/" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "포스팅을 위한 새 이메일 계정의 생성; 전 이메일 계정은 취소." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "새로운" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "설정" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "새로운 예약 구독의 통지를 이메일로 보내주세요." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "누군가 내 글을 좋아하는 게시글로 추가했을때, 이메일을 보냅니다." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "친구들이 내게 이메일이나 쪽지를 보낼 수 있도록 허용합니다." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "이메일로 통보를 포스트 하길 원합니다." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "이메일 주소를 위한 MicroID의 생성" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "설정이 저장되었습니다." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "싱크설정이 저장되었습니다." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "이메일이 추가 되지 않았습니다." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "그 이메일 주소를 정규화 할 수 없습니다." -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "유효한 이메일 주소가 아닙니다." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "그 이메일 주소는 이미 귀하의 것입니다." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "그 이메일 주소는 이미 다른 사용자의 소유입니다." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "확인 코드를 추가 할 수 없습니다." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1442,43 +1525,56 @@ msgstr "" "추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드" "와 사용법을 확인하여 주시기 바랍니다." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "취소 할 대기중인 인증이 없습니다." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "옳지 않은 메신저 계정 입니다." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "인증 취소" -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "그 이메일 주소는 귀하의 것이 아닙니다." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "주소가 삭제되었습니다." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "이메일 주소가 없습니다." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "사용자 기록을 업데이트 할 수 없습니다." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "받은 이메일 계정 삭제" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "새로운 이메일 주소가 추가 되었습니다." @@ -1676,17 +1772,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "이 그룹의 회원리스트" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "이 그룹의 회원리스트" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1864,12 +1962,16 @@ msgstr "회원이 당신을 차단해왔습니다." msgid "Error removing the block." msgstr "차단 제거 에러!" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "메신저 설정" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1878,15 +1980,25 @@ msgstr "" "당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아" "래 당신의 주소와 환경설정을 조정하세요." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "인스턴트 메신저를 사용할 수 없습니다." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "메신저 주소" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "확인된 최신의 Jabber/GTalk 계정" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1895,12 +2007,9 @@ msgstr "" "이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항" "목을 추가하셨습니까?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "메신저 주소" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1909,44 +2018,66 @@ msgstr "" "\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 " "GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "설정" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk 로 통지를 보내주세요." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "설정이 저장되었습니다." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Jabber ID가 아닙니다." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "그 Jabbar ID를 정규화 할 수 없습니다." -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "유효한 Jabber ID가 아닙니다." -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "그 Jabber ID는 이미 귀하의 것입니다." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니다." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1955,10 +2086,35 @@ msgstr "" "추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전" "달할 수 있습니다." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "옳지 않은 메신저 계정 입니다." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "이메일 승인을 삭제 할 수 없습니다." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "인증 취소" + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "그 Jabber ID는 귀하의 것이 아닙니다." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "주소가 삭제되었습니다." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -1999,7 +2155,9 @@ msgstr "새 사용자를 초대" msgid "You are already subscribed to these users:" msgstr "당신은 다음 사용자를 이미 구독하고 있습니다." -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2117,7 +2275,9 @@ msgstr "그룹가입을 위해서는 로그인이 필요합니다." msgid "No nickname or ID." msgstr "별명이 없습니다." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s 는 그룹 %s에 가입했습니다." @@ -2126,11 +2286,13 @@ msgstr "%s 는 그룹 %s에 가입했습니다." msgid "You must be logged in to leave a group." msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s가 그룹%s를 떠났습니다." @@ -2244,12 +2406,12 @@ msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요." msgid "New message" msgstr "새로운 메시지입니다." -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "내용이 없습니다!" @@ -2257,7 +2419,7 @@ msgstr "내용이 없습니다!" msgid "No recipient specified." msgstr "수신자를 지정하지 않았습니다." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2520,7 +2682,7 @@ msgid "6 or more characters" msgstr "6글자 이상" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "인증" @@ -3900,48 +4062,78 @@ msgstr "" msgid "Save site notice" msgstr "사이트 공지" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "SMS 세팅" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "메신저 주소" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "확인된 최신의 SMS가 가능한 휴대폰 번호" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "이 전화 번호는 인증 대기중입니다." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "인증 코드" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "휴대폰으로 받으신 인증번호를 입력하십시오." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "인증" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "SMS 휴대폰 번호" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요." -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "설정" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3949,23 +4141,34 @@ msgstr "" "통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있" "습니다." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "설정이 저장되었습니다." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "휴대폰 번호가 없습니다." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "통신회사가 선택 되지 않았습니다." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "그 휴대폰 번호는 이미 귀하의 것입니다." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "그 휴대폰 번호는 이미 다른 사용자의 것입니다." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -3974,30 +4177,50 @@ msgstr "" "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" "드와 사용법을 확인하여 주시기 바랍니다." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "옳지 않은 인증 번호 입니다." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "인증 취소" + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "그 휴대폰 번호는 귀하의 것이 아닙니다." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS 휴대폰 번호" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "휴대전화 사업자" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "통신 회사를 선택 하세요." -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "코드가 입력 되지 않았습니다." @@ -5227,10 +5450,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "취소" @@ -5308,34 +5529,40 @@ msgstr "실행 실패" msgid "Notice with that id does not exist" msgstr "해당 id의 프로필이 없습니다." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "이용자의 지속적인 게시글이 없습니다." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "죄송합니다. 이 명령은 아직 실행되지 않았습니다." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "찔러 보기를 보냈습니다." -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5343,200 +5570,204 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "게시글이 좋아하는 글로 지정되었습니다." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "당신은 이미 이 그룹의 멤버입니다." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "그룹 %s에 %s는 가입할 수 없습니다." +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s 는 그룹 %s에 가입했습니다." - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s가 그룹%s를 떠났습니다." - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "전체이름: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "위치: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "홈페이지: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "자기소개: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "%s에게 보낸 직접 메시지" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "직접 메시지 보내기 오류." -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "알림을 켤 수 없습니다." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "이 게시글 삭제하기" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "게시글이 등록되었습니다." -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "이 게시글에 대해 답장하기" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "구독하려는 사용자의 이름을 지정하십시오." -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "당신은 이 프로필에 구독되지 않고있습니다." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "%s에게 구독되었습니다." -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오." -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "%s에서 구독을 해제했습니다." -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "명령이 아직 실행되지 않았습니다." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "알림끄기." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "알림을 끌 수 없습니다." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "알림이 켜졌습니다." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "알림을 켤 수 없습니다." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "%s에서 구독을 해제했습니다." -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "당신은 이 프로필에 구독되지 않고있습니다." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다." -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "다른 사람을 구독 하실 수 없습니다." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "다른 사람을 구독 하실 수 없습니다." -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다." -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6387,6 +6618,10 @@ msgstr "id 인자가 없습니다." msgid "Repeat this notice?" msgstr "이 게시글에 대해 답장하기" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "네, 맞습니다." + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6586,47 +6821,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "몇 초 전" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "1분 전" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "%d분 전" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "1시간 전" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "%d시간 전" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "하루 전" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "%d일 전" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "1달 전" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "%d달 전" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "1년 전" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 016d96c0e5..0a920ba8bd 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:46+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:21+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -74,8 +74,13 @@ msgstr "Затворен" msgid "Save access settings" msgstr "Зачувај нагодувања на пристап" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -105,7 +110,7 @@ msgstr "Нема таква страница." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Нема таков корисник." @@ -348,7 +353,7 @@ msgstr "Нема пронајдено статус со таков ID." msgid "This status is already a favorite." msgstr "Овој статус веќе Ви е омилен." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Не можам да создадам омилина забелешка." @@ -466,7 +471,7 @@ msgstr "Групата не е пронајдена." msgid "You are already a member of that group." msgstr "Веќе членувате во таа група." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Блокирани сте од таа група од администраторот." @@ -517,17 +522,17 @@ msgid "Invalid token." msgstr "Погрешен жетон." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -560,12 +565,15 @@ msgstr "Жетонот на барањето %s е одобрен. Замене msgid "The request token %s has been denied and revoked." msgstr "Жетонот на барањето %s е одбиен и поништен." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Неочекувано поднесување на образец." @@ -828,27 +836,44 @@ msgstr "" "претплати на Вас во иднина, и нема да бидете известени ако имате @-одговори " "од корисникот." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Не" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Не го блокирај корисников" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Блокирај го корисников" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Не можев да ги снимам инофрмациите за блокот." @@ -861,8 +886,8 @@ msgstr "Не можев да ги снимам инофрмациите за б #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Нема таква група." @@ -921,16 +946,24 @@ msgstr "Непознат тип на адреса %s." msgid "That address has already been confirmed." msgstr "Оваа адреса веќе е потврдена." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Не можев да го подновам корисникот." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Не можев да ја избришам потврдата по е-пошта." @@ -985,11 +1018,13 @@ msgstr "" "избрише сите податоци за програмот од базата, вклучувајќи ги сите постоечки " "поврзувања." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Не го бриши овој програм" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Избриши го програмов" @@ -1024,11 +1059,13 @@ msgstr "Бриши забелешка" msgid "Are you sure you want to delete this notice?" msgstr "Дали сте сигурни дека сакате да ја избришете оваа заблешка?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Не ја бриши оваа забелешка" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Бриши ја оваа забелешка" @@ -1052,7 +1089,8 @@ msgstr "" "Дали се сигурни дека сакате да го избришете овој корисник? Ова воедно ќе ги " "избрише сите податоци за корисникот од базата, без да може да се вратат." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Избриши овој корисник" @@ -1165,15 +1203,13 @@ msgid "Reset back to default" msgstr "Врати по основно" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Зачувај" @@ -1299,31 +1335,43 @@ msgstr "Не можеше да се создадат алијаси." msgid "Options saved." msgstr "Нагодувањата се зачувани." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Нагодувања за е-пошта" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Раководење со начинот на кој добивате е-пошта од %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Адреса" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Е-поштенска адреса" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Тековна потврдена е-поштенска адреса." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Отстрани" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1331,109 +1379,144 @@ msgstr "" "Очекувам потврда за оваа адреса. Проверете си го приемното сандаче (а и " "сандачето за спам!). Во писмото ќе следат понатамошни напатствија." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Е-поштенска адреса" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Е-пошта, од обликот „UserName@example.org“" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Додај" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Приемна пошта" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Испраќајте е-пошта на оваа адреса за да објавувате нови забелешки." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Создај нова е-поштенска адреса за примање објави; ја заменува старата адреса." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Ново" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Нагодувања" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Испраќај ми известувања за нови претплати по е-пошта." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Испраќај ми е-пошта кога некој ќе додаде моја забелешка како омилена." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Испраќај ми е-пошта кога некој ќе ми испрати приватна порака." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Испраќај ми е-пошта кога некој ќе ми испрати „@-одговор“" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" "Дозволи им на пријателите да можат да ме подбуцнуваат и да ми испраќаат е-" "пошта." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Сакам да објавувам забелешки по е-пошта." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Објави MicroID за мојата е-поштенска адреса." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Нагодувањата се зачувани." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Нема е-поштенска адреса." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Неможам да ја нормализирам таа е-поштенска адреса" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неправилна адреса за е-пошта." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Оваа е-поштенска адреса е веќе Ваша." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Таа е-поштенска адреса е веќе зафатена од друг корисник." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Кодот за потврда не може да се внесе." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1442,43 +1525,56 @@ msgstr "" "сандачето за добиени писма (а и сандачето за спам!) за да го видите кодот и " "напатствијата за негово користење." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Нема потврди кои може да се откажат." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Ова е погрешната IM адреса." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Потврдата е откажана" -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Ова не е Вашата е-поштенска адреса." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Адресата е отстранета." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Нема приемна е-поштенска адреса." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Не можев да ја подновам корисничката евиденција." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Приемната е-поштенска адреса е отстранета." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Додадена е нова влезна е-поштенска адреса." @@ -1669,15 +1765,17 @@ msgstr "" "$s“? Корисникот ќе биде отстранет од групата, и во иднина нема да може да " "објавува во таа група и да се претплаќа на неа." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Не го блокирај овој корисник од оваа група" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Блокирај го овој корисник од оваа група" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" "Се појави грешка во базата наподатоци при блокирањето на корисникот од " @@ -1863,11 +1961,15 @@ msgstr "Корисникот не е блокиран од групата." msgid "Error removing the block." msgstr "Грешка при отстранување на блокот." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Нагодувања за IM" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1876,15 +1978,24 @@ msgstr "" "Можете да примате и праќате забелешки преку Jabber/GTalk [брзи пораки](%%doc." "im%%). Подолу " -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM е недостапно." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IM адреса" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Моментално потврдена Jabber/GTalk адреса." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1894,11 +2005,9 @@ msgstr "" "порака со понатамошни инструкции. (Дали го додадовте %s на Вашата листа со " "пријатели?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "IM адреса" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1907,44 +2016,66 @@ msgstr "" "Jabber или GTalk адреса како „ime@example.org“. Но прво додајте го %s во " "Вашата контакт листа во Вашиот IM клиент или GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Нагодувања" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Испраќај ми забелешки преку Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Објавувај забелешка кога мојот статус на Jabber/GTalk ќе се промени." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Испраќај ми одговори преку Jabber/GTalk од луѓе на кои не сум претплатен." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Објави MicroID за мојата адреса на Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Нагодувањата се зачувани." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Нема JabberID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Ова JabberID не може да се нормализира." -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Неправилен JabberID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Ова веќе е Вашиот Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Ова Jabber ID му припаѓа на друг корисник." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1953,10 +2084,35 @@ msgstr "" "Испративме код за потврда на IM адресата што ја додадовте. Мора да го " "одобрите %S за да ви испраќа пораки." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Ова е погрешната IM адреса." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Не можев да ја избришам потврдата по е-пошта." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Потврдата е откажана" + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Ова не е Вашиот Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Адресата е отстранета." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2000,7 +2156,9 @@ msgstr "Покани нови корисници" msgid "You are already subscribed to these users:" msgstr "Веќе сте претплатени на овие корисници:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2124,7 +2282,9 @@ msgstr "Мора да сте најавени за да можете да се msgid "No nickname or ID." msgstr "Нема прекар или ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s се зачлени во групата %2$s" @@ -2133,11 +2293,13 @@ msgstr "%1$s се зачлени во групата %2$s" msgid "You must be logged in to leave a group." msgstr "Мора да сте најавени за да можете да ја напуштите групата." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Не членувате во таа група." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s ја напушти групата %2$s" @@ -2248,12 +2410,12 @@ msgstr "Овој образец служи за создавање нова гр msgid "New message" msgstr "Нова порака" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Не можете да испратите порака до овојо корисник." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Нема содржина!" @@ -2261,7 +2423,7 @@ msgstr "Нема содржина!" msgid "No recipient specified." msgstr "Нема назначено примач." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2522,7 +2684,7 @@ msgid "6 or more characters" msgstr "6 или повеќе знаци" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Потврди" @@ -3923,45 +4085,75 @@ msgstr "" msgid "Save site notice" msgstr "Зачувај ја објавава" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Нагодувања за СМС" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Можете да примате СМС пораки по е-пошта од %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "СМС-пораките се недостапни." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM адреса" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Тековен потврден телефонски број со можност за СМС." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Очекувам потврда за овој телефонски број." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Потврден код" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Внесете го кодот што го добивте по телефон." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Потврди" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Телефонски број за СМС" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" "Телефонски број, без интерпункциски знаци и празни места, со повикувачки код" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Нагодувања" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3969,23 +4161,34 @@ msgstr "" "Испраќај ми забелешки по СМС; разбрам дека ова може да доведе до прекумерни " "трошоци." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Нагодувањата се зачувани." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Нема телефонски број." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Немате избрано оператор." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Ова и сега е Вашиот телефонски број." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Тој телефонски број е веќе во употреба од друг корисник." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3993,23 +4196,42 @@ msgstr "" "На телефонскиот број што го додадовте е испратен потврден код. Проверете си " "го телефонот за да го видите кодот, заедно со напатствија за негова употреба." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Ова е погрешен потврден број." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Потврдата е откажана" + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Тоа не е Вашиот телефонски број." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Телефонски број за СМС" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Мобилен оператор" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Изберете оператор" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4018,7 +4240,8 @@ msgstr "" "Мобилен оператор за телефонот. Ако знаете оператор што прифаќа СМС преку е-" "пошта, но не фигурира овде, известете нè на %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Нема внесено код" @@ -5220,10 +5443,8 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Основно-зададен пристап за овој програм: само читање, или читање-пишување" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Откажи" @@ -5299,34 +5520,40 @@ msgstr "Наредбата не успеа" msgid "Notice with that id does not exist" msgstr "Не постои забелешка со таков id" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Корисникот нема последна забелешка" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Не можев да пронајдам корисник со прекар %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Не можев да пронајдам локален корисник со прекар %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Жалиме, оваа наредба сè уште не е имплементирана." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Нема баш логика да се подбуцнувате сами себеси." -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Испратено подбуцнување на %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5337,57 +5564,55 @@ msgstr "" "Претплатници: %2$s\n" "Забелешки: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Забелешката е обележана како омилена." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Веќе членувате во таа група" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Не можев да го зачленам корисникот %s во групата %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s се зачлени во групата %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Не можев да го отстранам корисникот %s од групата %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s ја напушти групата %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Име и презиме: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Локација: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "За: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5396,141 +5621,147 @@ msgstr "" "%s е далечински профил; можете да праќате директни пораки само до корисници " "на истиот сервер." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -"Пораката е предолга - дозволени се највеќе %d знаци, а вие испративте %d" +"Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Директната порака до %s е испратена" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Грашка при испаќањето на директната порака." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Не можете да повторувате сопствени забалешки" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Оваа забелешка е веќе повторена" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Забелешката од %s е повторена" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Грешка при повторувањето на белешката." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" "Забелешката е предолга - треба да нема повеќе од %d знаци, а Вие испративте %" "d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Одговорот на %s е испратен" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Грешка при зачувувањето на белешката." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Назначете го името на корисникот на којшто сакате да се претплатите" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Не можете да се претплаќате на OMB профили по наредба." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Претплатено на %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Назначете го името на корисникот од кого откажувате претплата." -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Претплатата на %s е откажана" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Наредбата сè уште не е имплементирана." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Известувањето е исклучено." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Не можам да исклучам известување." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Известувањето е вклучено." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Не можам да вклучам известување." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Наредбата за најава е оневозможена" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Оваа врска може да се употреби само еднаш, и трае само 2 минути: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Откажана претплата на %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Не сте претплатени никому." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Никој не е претплатен на Вас." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Оддалечена претплата" msgstr[1] "Оддалечена претплата" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Не членувате во ниедна група." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6503,6 +6734,10 @@ msgstr "Нема return-to аргументи." msgid "Repeat this notice?" msgstr "Да ја повторам белешкава?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Да" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Повтори ја забелешкава" @@ -6689,47 +6924,57 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "пред неколку секунди" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "пред една минута" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "пред %d минути" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "пред еден час" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "пред %d часа" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "пред еден ден" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "пред %d денови" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "пред еден месец" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "пред %d месеца" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "пред една година" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 149c103e42..8d88760286 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:52+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:25+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 (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -72,8 +72,13 @@ msgstr "Lukket" msgid "Save access settings" msgstr "Lagre tilgangsinnstillinger" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Lagre" @@ -104,7 +109,7 @@ msgstr "Ingen slik side" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ingen slik bruker" @@ -347,7 +352,7 @@ msgstr "Fant ingen status med den ID-en." msgid "This status is already a favorite." msgstr "Denne statusen er allerede en favoritt." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Kunne ikke opprette favoritt." @@ -464,7 +469,7 @@ msgstr "Gruppe ikke funnet!" msgid "You are already a member of that group." msgstr "Du er allerede medlem av den gruppen." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Du har blitt blokkert fra den gruppen av administratoren." @@ -515,17 +520,17 @@ msgid "Invalid token." msgstr "Ugyldig symbol." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -556,12 +561,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Uventet skjemainnsending." @@ -819,27 +827,44 @@ msgstr "" "lenger abbonere på deg, vil ikke kunne abbonere på deg i fremtiden og du vil " "ikke bli varslet om @-svar fra dem." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Nei" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Ikke blokker denne brukeren" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blokker denne brukeren" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Kunne ikke lagre blokkeringsinformasjon." @@ -852,8 +877,8 @@ msgstr "Kunne ikke lagre blokkeringsinformasjon." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Ingen slik gruppe." @@ -912,16 +937,24 @@ msgstr "Ukjent adressetype %s" msgid "That address has already been confirmed." msgstr "Den adressen har allerede blitt bekreftet." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Klarte ikke å oppdatere bruker." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Kunne ikke slette e-postbekreftelse." @@ -976,11 +1009,13 @@ msgstr "" "data om programmet fra databasen, inkludert alle eksisterende " "brukertilkoblinger." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Ikke slett dette programmet" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Slett dette programmet" @@ -1015,11 +1050,13 @@ msgstr "Slett notis" msgid "Are you sure you want to delete this notice?" msgstr "Er du sikker på at du vil slette denne notisen?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Ikke slett denne notisen" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1043,7 +1080,8 @@ msgstr "" "Er du sikker på at du vil slette denne brukeren? Dette vil slette alle data " "om brukeren fra databasen, uten sikkerhetskopi." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Slett denne brukeren" @@ -1155,15 +1193,13 @@ msgid "Reset back to default" msgstr "Tilbakestill til standardverdier" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Lagre" @@ -1289,31 +1325,43 @@ msgstr "Kunne ikke opprette alias." msgid "Options saved." msgstr "Lagret valg." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "E-postinnstillinger" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Velg hvordan du mottar e-post fra %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "E-postadresse" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Nåværende bekreftede e-postadresse" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Fjern" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1321,106 +1369,141 @@ msgstr "" "Venter på bekreftelse av adressen. Sjekk innboksen din (og søppelboksen) for " "melding med videre veiledning." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "E-postadresse" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "E-postadresse («brukernavn@eksempel.org»)" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Legg til" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "innkommende e-post" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Send e-post til denne adressen for å poste nye notiser." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Angi en ny e-postadresse for å poste til; fjerner den gamle." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Ny" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Innstillinger" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Send meg varsler om nye abonnementer gjennom e-post." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Send meg en e-post når noen legger min notis til som favoritt." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Send meg en e-post når noen sender meg en privat melding." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send meg en e-post når noen sender meg et «@-svar»." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Tillat venner å knuffe meg og sende meg en e-post." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Jeg vil poste notiser med e-post." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publiser en MicroID for min e-postadresse." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Innstillinger lagret." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Ingen e-postadresse." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Klarer ikke normalisere epostadressen" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ugyldig e-postadresse." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Det er allerede din e-postadresse." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Den e-postadressen tilhører allerede en annen bruker." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Kunne ikke sette inn bekreftelseskode." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1428,43 +1511,56 @@ msgstr "" "En bekreftelseskode ble sendt til epostadressen du la til. Sjekk innboksen " "din (og søppelboksen) for koden, og hvordan du skal bruke den." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ingen ventende bekreftelse å avbryte." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Det er feil IM-adresse." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Bekreftelse avbrutt." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Det er ikke din e-postadresse." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Adressen ble fjernet." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ingen innkommende e-postadresse." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Inkommende e-postadresse fjernet." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Ny innkommende e-postadresse lagt til." @@ -1653,15 +1749,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Ikke blokker denne brukeren fra denne gruppa" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Blokker denne brukeren fra denne gruppen" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1839,26 +1937,39 @@ msgstr "Bruker er ikke blokkert fra gruppe." msgid "Error removing the block." msgstr "Feil under oppheving av blokkering." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Innstillinger for direktemeldinger" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Direktemeldingsadresse" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Nåværende bekreftede Jabber/GTak-adresse." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1867,54 +1978,74 @@ msgstr "" "Venter på godkjenning. Sjekk din Jabber/GTalk-konto for en melding med " "instruksjoner (la du %s til vennelisten din?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Direktemeldingsadresse" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Innstillinger" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser en MicroID for min Jabber/Gtalk-adresse." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Innstillinger lagret." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Ingen Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Klarer ikke normalisere Jabber-IDen" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Ugyldig Jabber ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Det er allerede din Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1923,10 +2054,35 @@ msgstr "" "En bekreftelseskode ble sendt til lynmeldingsadressen du la til. Du må " "godkjenne %s for å sende meldinger til deg." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Det er feil IM-adresse." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Kunne ikke slette e-postbekreftelse." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Bekreftelse avbrutt." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Det er ikke din Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Adressen ble fjernet." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1968,7 +2124,9 @@ msgstr "Inviter nye brukere" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2082,7 +2240,9 @@ msgstr "Du må være innlogget for å bli med i en gruppe." msgid "No nickname or ID." msgstr "ngen kallenavn eller ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s ble med i gruppen %2$s" @@ -2091,11 +2251,13 @@ msgstr "%1$s ble med i gruppen %2$s" msgid "You must be logged in to leave a group." msgstr "Du må være innlogget for å forlate en gruppe." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Du er ikke et medlem av den gruppen." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s forlot gruppe %2$s" @@ -2206,12 +2368,12 @@ msgstr "Bruk dette skjemaet for å opprette en ny gruppe." msgid "New message" msgstr "Ny melding" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Du kan ikke sende en melding til denne brukeren." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Inget innhold." @@ -2219,7 +2381,7 @@ msgstr "Inget innhold." msgid "No recipient specified." msgstr "Ingen mottaker oppgitt." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2472,7 +2634,7 @@ msgid "6 or more characters" msgstr "6 eller flere tegn" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Bekreft" @@ -3832,66 +3994,107 @@ msgstr "" msgid "Save site notice" msgstr "Innstillinger for IM" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "SMS-innstillinger" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan motta SMS-meldinger gjennom e-post fra %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS er ikke tilgjengelig." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Direktemeldingsadresse" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Nåværende bekreftede telefonnummer med mulighet for å motta SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Venter på bekreftelse for dette telefonnummeret." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Bekreftelseskode" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Skriv inn koden du mottok på telefonen din." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Bekreft" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Telefonnummer for SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Innstillinger" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Innstillinger lagret." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Ingen telefonnummer." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Ingen operatør valgt." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Det er allerede din ditt telefonnummer." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -3900,30 +4103,50 @@ msgstr "" "En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen " "din for koden, og hvordan du skal bruke den." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Bekreftelse avbrutt." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Det er ikke ditt telefonnummer." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Telefonnummer for SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Mobiloperatør" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Velg en operatør" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -5086,10 +5309,8 @@ msgstr "" "Standardtilgang for dette programmet: skrivebeskyttet eller lese- og " "skrivetilgang" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Avbryt" @@ -5165,34 +5386,40 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "Notis med den id'en finnes ikke" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Bruker har ingen siste notis" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Fant ingen bruker med kallenavn %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Fant ingen bruker med kallenavn %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Det gir ikke så mye mening å knuffe seg selv." -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Knuff sendt til %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5203,198 +5430,202 @@ msgstr "" "Abonnenter: %2$s\n" "Notiser: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Notis markert som favoritt." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Du er allerede medlem av den gruppen." -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" -msgstr "Klarte ikke å oppdatere bruker." +msgid "Could not join user %1$s to group %2$s" +msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s ble med i gruppen %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Kunne ikke fjerne brukeren %s fra gruppen %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s forlot gruppen %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Fullt navn: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Posisjon: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Hjemmeside: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Om: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Melding for lang - maks er %d tegn, du sendte %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "Melding for lang - maks er %1$d tegn, du sendte %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Direktemelding til %s sendt" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Feil ved sending av direktemelding." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Kan ikke repetere din egen notis" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Allerede repetert den notisen" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Notis fra %s repetert" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Feil ved repetering av notis." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Notis for lang - maks er %d tegn, du sendte %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Svar til %s sendt" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Feil ved lagring av notis." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Svar til %s" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Ikke autorisert." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ikke autorisert." msgstr[1] "Ikke autorisert." -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Svar til %s" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Svar til %s" msgstr[1] "Svar til %s" -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "Du er allerede logget inn!" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du er allerede logget inn!" msgstr[1] "Du er allerede logget inn!" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6296,6 +6527,10 @@ msgstr "" msgid "Repeat this notice?" msgstr "Repeter denne notisen?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Ja" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Repeter denne notisen" @@ -6487,47 +6722,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "noen få sekunder siden" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "omtrent %d minutter siden" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "omtrent én time siden" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "omtrent %d timer siden" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "omtrent én dag siden" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "omtrent %d dager siden" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "omtrent én måned siden" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "omtrent %d måneder siden" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 f1842a8746..b88ce26d6f 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:01+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:31+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -73,8 +73,13 @@ msgstr "Gesloten" msgid "Save access settings" msgstr "Toegangsinstellingen opslaan" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -104,7 +109,7 @@ msgstr "Deze pagina bestaat niet." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Onbekende gebruiker." @@ -348,7 +353,7 @@ msgstr "Er is geen status gevonden met dit ID." msgid "This status is already a favorite." msgstr "Deze mededeling staat al in uw favorietenlijst." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Het was niet mogelijk een favoriet aan te maken." @@ -470,7 +475,7 @@ msgstr "De groep is niet aangetroffen." msgid "You are already a member of that group." msgstr "U bent al lid van die groep." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Een beheerder heeft ingesteld dat u geen lid mag worden van die groep." @@ -521,17 +526,17 @@ msgid "Invalid token." msgstr "Ongeldig token." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -570,12 +575,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "Het verzoektoken %s is geweigerd en ingetrokken." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Het formulier is onverwacht ingezonden." @@ -837,27 +845,44 @@ msgstr "" "niet meer volgen en u wordt niet op de hoogte gebracht van \"@\"-antwoorden " "van deze gebruiker." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Nee" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Gebruiker niet blokkeren" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Deze gebruiker blokkeren" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan." @@ -870,8 +895,8 @@ msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "De opgegeven groep bestaat niet." @@ -930,16 +955,24 @@ msgstr "Onbekend adrestype %s." msgid "That address has already been confirmed." msgstr "Dit adres is al bevestigd." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "De gebruiker kon gebruiker niet bijwerkt worden." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "De e-mailbevestiging kon niet verwijderd worden." @@ -994,11 +1027,13 @@ msgstr "" "worden alle gegevens van deze applicatie uit de database verwijderd, " "inclusief alle bestaande gebruikersverbindingen." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Deze applicatie niet verwijderen" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Deze applicatie verwijderen" @@ -1033,11 +1068,13 @@ msgstr "Mededeling verwijderen" msgid "Are you sure you want to delete this notice?" msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -1062,7 +1099,8 @@ msgstr "" "worden alle gegevens van deze gebruiker uit de database verwijderd. Het is " "niet mogelijk ze terug te zetten." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Gebruiker verwijderen" @@ -1175,15 +1213,13 @@ msgid "Reset back to default" msgstr "Standaardinstellingen toepassen" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Opslaan" @@ -1309,31 +1345,43 @@ msgstr "Het was niet mogelijk de aliassen aan te maken." msgid "Options saved." msgstr "De instellingen zijn opgeslagen." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "E-mailvoorkeuren" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Uw e-mailinstellingen op %%site.name%% beheren." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adres" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "E-mailadres" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Huidige bevestigde e-mailadres" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Verwijderen" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1341,108 +1389,142 @@ msgstr "" "Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox (en uw " "ongewenste berichten/spam) voor een bericht met nadere instructies." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "E-mailadres" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mailadres, zoals \"gebruikersnaam@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Toevoegen" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Inkomende e-mail" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Stelt een nieuw e-mailadres in voor het ontvangen van berichten. Het " "bestaande e-mailadres wordt verwijderd." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nieuw" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Voorkeuren" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Mij e-mailen bij nieuwe abonnementen." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Mij e-mailen als iemand mijn mededeling als favoriet instelt." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Mij e-mailen als iemand mij een privébericht zendt." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Mij e-mailen als iemand mij een antwoord met \"@\" erin stuurt." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Vrienden mogen me porren en e-mailen." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Ik wil mededelingen per e-mail plaatsen." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Een MicroID voor mijn e-mailadres publiceren." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Uw voorkeuren zijn opgeslagen." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "De ontwerpvoorkeuren zijn opgeslagen." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Geen e-mailadres" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Kan het emailadres niet normaliseren" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "U hebt dit e-mailadres als ingesteld als uw e-mailadres." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Dit e-mailadres is al geregistreerd door een andere gebruiker." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "De bevestigingscode kon niet ingevoegd worden." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1451,43 +1533,56 @@ msgstr "" "toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " "hoe het te gebruiken." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Er is geen openstaand bevestigingsverzoek om te annuleren." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Dat is het verkeerde IM-adres." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Bevestiging geannuleerd." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Dit is niet uw e-mailadres." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Het adres is verwijderd." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Geen binnenkomend e-mailadres" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kan de gebruikersgegevens niet vernieuwen" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Het e-mailadres voor inkomende mail is verwijderd." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." @@ -1683,15 +1778,17 @@ msgstr "" "gebruiker wordt dan uit de groep verwijderd, kan er geen berichten meer " "plaatsen en kan zich in de toekomst ook niet meer op de groep abonneren." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Deze gebruiker niet de toegang tot deze groep ontzeggen" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" "Er is een databasefout opgetreden bij het uitsluiten van de gebruiker van de " @@ -1878,11 +1975,15 @@ msgstr "De gebruiker is niet de toegang tot de groep ontzegd." msgid "Error removing the block." msgstr "Er is een fout opgetreden bij het verwijderen van de blokkade." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "IM-instellingen" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1891,15 +1992,24 @@ msgstr "" "U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"onmiddellijke " "berichten\"](%%doc.im%%). Maak hieronder uw instellingen." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM is niet beschikbaar." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IM-adres" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Huidige bevestigde Jabber/GTalk adres." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1909,11 +2019,9 @@ msgstr "" "gebruiker op een bericht met nadere instructies. Hebt u %s aan uw " "contactenlijst toegevoegd?" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "IM-adres" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1922,45 +2030,67 @@ msgstr "" "Jabber-ID of GTalk-adres, zoals \"gebruiker@example.org\". Zorg ervoor dat u " "%s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Voorkeuren" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Mij berichten sturen via Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Een mededeling versturen als mijn Jabber/GTalk-status wijzigt." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Mij antwoorden sturen via Jabber/GTalk van gebruikers op wie ik niet " "geabonneerd ben." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Een MicroID voor mijn Jabber/GTalk-adres publiceren." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Uw voorkeuren zijn opgeslagen." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Geen Jabber-ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Het was niet mogelijk om het Jabber-ID te normaliseren" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Geen geldige Jabber-ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "U hebt dit al ingesteld als uw Jabber-ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Het Jabber-ID wordt al gebruikt door een andere gebruiker." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1969,10 +2099,35 @@ msgstr "" "Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet " "ermee akkoord gaan dat %s berichten aan u verzendt." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Dat is het verkeerde IM-adres." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "De e-mailbevestiging kon niet verwijderd worden." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Bevestiging geannuleerd." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Dit is niet uw Jabber-ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Het adres is verwijderd." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2015,7 +2170,9 @@ msgstr "Nieuwe gebruikers uitnodigen" msgid "You are already subscribed to these users:" msgstr "U bent als geabonneerd op deze gebruikers:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2141,7 +2298,9 @@ msgstr "U moet aangemeld zijn om lid te worden van een groep." msgid "No nickname or ID." msgstr "Geen gebruikersnaam of ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s is lid geworden van de groep %2$s" @@ -2150,11 +2309,13 @@ msgstr "%1$s is lid geworden van de groep %2$s" msgid "You must be logged in to leave a group." msgstr "U moet aangemeld zijn om een groep te kunnen verlaten." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "U bent geen lid van deze groep" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s heeft de groep %2$s verlaten" @@ -2265,12 +2426,12 @@ msgstr "Gebruik dit formulier om een nieuwe groep aan te maken." msgid "New message" msgstr "Nieuw bericht" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "U kunt geen bericht naar deze gebruiker zenden." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Geen inhoud!" @@ -2278,7 +2439,7 @@ msgstr "Geen inhoud!" msgid "No recipient specified." msgstr "Er is geen ontvanger aangegeven." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." @@ -2541,7 +2702,7 @@ msgid "6 or more characters" msgstr "Zes of meer tekens" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Bevestigen" @@ -3951,44 +4112,74 @@ msgstr "" msgid "Save site notice" msgstr "Websitebrede mededeling opslaan" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "SMS-instellingen" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "U kunt SMS-berichten per e-mail ontvangen van %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS is niet beschikbaar." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM-adres" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Huidige bevestigde telefoonnummer met SMS-functie." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Er wordt gewacht op bevestiging van dit telefoonnummer." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Bevestigingscode" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Voer de code in die u via uw telefoon hebt ontvangen." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Bevestigen" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "SMS-nummer" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Voorkeuren" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3996,23 +4187,34 @@ msgstr "" "Mij mededelingen via SMS sturen. Ik begrijp dat dit exorbitante rekeningen " "van mijn provider kan opleveren." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Uw voorkeuren zijn opgeslagen." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Geen telefoonnummer." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Er is geen provider geselecteerd." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "U hebt dit al ingesteld als uw telefoonnummer." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Dit telefoonnummer is al geregistrerd door een andere gebruiker." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -4020,23 +4222,42 @@ msgstr "" "Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt " "toegevoegd. Op uw telefoon vindt u de code en de instructies." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Dit is het verkeerde bevestigingsnummer." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Bevestiging geannuleerd." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Dit is niet uw telefoonnummer." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS-nummer" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Mobiele aanbieder" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Selecteer een provider" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4046,7 +4267,8 @@ msgstr "" "SMS ondersteunt, maar nog niet in de lijst is opgenomen, laat dit ons dan " "via e-mail weten op het e-mailadres %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Er is geen code ingevoerd" @@ -4073,7 +4295,6 @@ msgid "Invalid snapshot report URL." msgstr "De rapportage-URL voor snapshots is ongeldig." #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" msgstr "Willekeurig tijdens een websitehit" @@ -4668,7 +4889,7 @@ msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" @@ -5262,34 +5483,29 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Annuleren" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" -msgstr "Lezen en schrijven" +msgstr "lezen en schrijven" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" -msgstr "Alleen-lezen" +msgstr "alleen-lezen" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Goedgekeurd op %1$s met toegang \"%2$s\"." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Intrekken" @@ -5341,34 +5557,40 @@ msgstr "Het uitvoeren van het commando is mislukt" msgid "Notice with that id does not exist" msgstr "Er bestaat geen mededeling met dat ID" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Deze gebruiker heeft geen laatste mededeling" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "De gebruiker %s is niet aangetroffen" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "De lokale gebruiker %s is niet aangetroffen" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Dit commando is nog niet geïmplementeerd." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Het heeft niet zoveel zin om uzelf te porren..." -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "De por naar %s is verzonden" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5379,57 +5601,55 @@ msgstr "" "Abonnees: %2$s\n" "Mededelingen: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "De mededeling is op de favorietenlijst geplaatst." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "U bent al lid van deze groep" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Het was niet mogelijk om de gebruiker %s toe te voegen aan de groep %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s is lid geworden van de groep %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "De gebruiker %s kon niet uit de groep %s verwijderd worden" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s heeft de groep %s verlaten" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Volledige naam: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Locatie: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Thuispagina: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Over: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5438,145 +5658,151 @@ msgstr "" "%s is een profiel op afstand. U kunt alle privéberichten verzenden aan " "gebruikers op dezelfde server." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -"Het bericht te is lang. De maximale lengte is %d tekens. De lengte van uw " -"bericht was %d" +"Het bericht te is lang. De maximale lengte is %1$d tekens. De lengte van uw " +"bericht was %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Het directe bericht aan %s is verzonden" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Er is een fout opgetreden bij het verzonden van het directe bericht." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "U kunt uw eigen mededelingen niet herhalen." -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "U hebt die mededeling al herhaald." -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "De mededeling van %s is herhaald" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Er is een fout opgetreden bij het herhalen van de mededeling." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" "De mededeling is te lang. De maximale lengte is %d tekens. Uw mededeling " "bevatte %d tekens" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Het antwoord aan %s is verzonden" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Geef de naam op van de gebruiker waarop u wilt abonneren" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Abonneren op OMB-profielen op commando is niet mogelijk." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Geabonneerd op %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" "Geef de naam op van de gebruiker waarvoor u het abonnement wilt opzeggen" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Uw abonnement op %s is opgezegd" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Dit commando is nog niet geïmplementeerd." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notificaties uitgeschakeld." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Het is niet mogelijk de mededelingen uit te schakelen." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notificaties ingeschakeld." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Het is niet mogelijk de notificatie uit te schakelen." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Het aanmeldcommando is uitgeschakeld" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Deze verwijzing kan slechts één keer gebruikt worden en is twee minuten " "geldig: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Het abonnement van %s is opgeheven" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "U bent op geen enkele gebruiker geabonneerd." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "U bent geabonneerd op deze gebruiker:" msgstr[1] "U bent geabonneerd op deze gebruikers:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Niemand heeft een abonnenment op u." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Deze gebruiker is op u geabonneerd:" msgstr[1] "Deze gebruikers zijn op u geabonneerd:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "U bent lid van geen enkele groep." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "U bent lid van deze groep:" msgstr[1] "U bent lid van deze groepen:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6555,6 +6781,10 @@ msgstr "Er zijn geen \"terug naar\"-parameters opgegeven." msgid "Repeat this notice?" msgstr "Deze mededeling herhalen?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Ja" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Deze mededeling herhalen" @@ -6741,47 +6971,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "een paar seconden geleden" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minuten geleden" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "ongeveer een uur geleden" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur geleden" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "ongeveer een dag geleden" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dagen geleden" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "ongeveer een maand geleden" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maanden geleden" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 bf802b96f7..00534aea67 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:36:57+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:28+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 (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -78,8 +78,13 @@ msgstr "Blokkér" msgid "Save access settings" msgstr "Avatar-innstillingar" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -111,7 +116,7 @@ msgstr "Dette emneord finst ikkje." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Brukaren finst ikkje." @@ -348,7 +353,7 @@ msgstr "Fann ingen status med den ID-en." msgid "This status is already a favorite." msgstr "Denne notisen er alt ein favoritt!" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Kunne ikkje lagre favoritt." @@ -471,7 +476,7 @@ msgstr "Fann ikkje API-metode." msgid "You are already a member of that group." msgstr "Du er allereie medlem av den gruppa" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -524,17 +529,17 @@ msgid "Invalid token." msgstr "Ugyldig storleik." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -568,12 +573,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Uventa skjemasending." @@ -835,28 +843,45 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Nei" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Lås opp brukaren" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Jau" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkér denne brukaren" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Lagring av informasjon feila." @@ -869,8 +894,8 @@ msgstr "Lagring av informasjon feila." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Denne gruppa finst ikkje." @@ -931,16 +956,24 @@ msgstr "Ukjend adressetype %s" msgid "That address has already been confirmed." msgstr "Den addressa har alt blitt bekrefta." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Kan ikkje oppdatera brukar." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Kan ikkje sletta e-postgodkjenning." @@ -998,12 +1031,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Kan ikkje sletta notisen." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Slett denne notisen" @@ -1040,12 +1075,14 @@ msgstr "Slett notis" msgid "Are you sure you want to delete this notice?" msgstr "Sikker på at du vil sletta notisen?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1070,7 +1107,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Slett denne notisen" @@ -1192,15 +1230,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Lagra" @@ -1339,32 +1375,45 @@ msgstr "Kunne ikkje lagre favoritt." msgid "Options saved." msgstr "Lagra innstillingar." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Epostinnstillingar" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Styr korleis du får epost frå %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adresse" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Epostadresser" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Godkjent epostadresse." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Fjern" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1372,109 +1421,143 @@ msgstr "" "Ventar på godkjenning. Sjekk innboksen (og søppelpostboksen) for ei melding " "med instruksjonar." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "Epostadresser" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Epostadresse («brukarnamn@example.org»)" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Legg til" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Innkomande epost" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Send epost til denne addressa for å legge til nye notisar." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Vel ny epostadresse til å oppdatera med; fjerner den gamle." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Ny" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Brukarval" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Send meg ein notis ved nye tingingar på epost." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Send meg ein epost når nokon legg til ein av mine notisar som favoritt." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Send meg ein epost når nokon sender meg ei privat melding." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send meg ein epost når nokon sender meg ei privat melding." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Tillat vennar å sende meg ein epost." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Eg vil senda notisar med epost." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publiser ein MicroID for epost addressa mi." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Lagra brukarval." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Synkroniserings innstillingar blei lagra." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Ingen epostadresse." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Klarar ikkje normalisera epostadressa" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ikkje ei gyldig epostadresse." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Det er alt din epost addresse" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Den epost addressa er alt registrert hos ein annan brukar." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Kan ikkje leggja til godkjenningskode." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1482,43 +1565,56 @@ msgstr "" "Sendte godkjenningskode til epostadressa du la til. Sjekk innboksen (og " "søppelpostboksen) for koden og veiledning på korleis du nyttar han." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ingen ventande stadfesting å avbryta." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Det er feil lynmeldings addresse." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Stadfesting avbrutt." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Det er ikkje din epost addresse." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Addressa blei fjerna." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ingen innkomande epostadresse." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kan ikkje oppdatera brukarinformajon." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Fjerna innkomande epostadresse." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "La til ny innkomande epostadresse." @@ -1718,17 +1814,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "Ei liste over brukarane i denne gruppa." -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "Ei liste over brukarane i denne gruppa." -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1908,12 +2006,16 @@ msgstr "Brukar har blokkert deg." msgid "Error removing the block." msgstr "Feil ved fjerning av blokka." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "Ljonmeldinginnstillingar" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1922,16 +2024,26 @@ msgstr "" "Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%" "doc.im%%). Set opp adressa og innstillingar under." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "Denne sida er ikkje tilgjengleg i eit" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "Ljonmeldingadresse" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Stadfesta Jabber/Gtalk-adresse." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1940,12 +2052,9 @@ msgstr "" "Venter på godkjenning. Sjekk din Jabber/GTalk-konto for ei melding med " "instruksjonar (la du %s til venelista di?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "Ljonmeldingadresse" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1954,43 +2063,65 @@ msgstr "" "Jabber- eller GTalk-adresse, døme «brukarnamn@example.org». Hugs å fyrst " "leggja %s til venelista di i ljonmeldingsklienten din." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Brukarval" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Send meg ein notis via Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Legg til ein notis når min Jabber/GTalk status forandrar seg." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Send meg svar via Jabber/GTalk fra folk eg ikkje abbonnerar på." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser ein MicroID for Jabber/GTalk addressene mine" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Lagra brukarval." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Nei Jabber-ID" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Klarar ikkje normalisera Jabber-IDen" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Ikkje ein gyldig Jabber-ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Det er alt din Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID tilhøyrer allereie ein annan brukar." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1999,10 +2130,35 @@ msgstr "" "Sendte godkjenningskode til ljonmeldingsadressa du la til. Du må godtaka %s " "for å senda meldinger til deg." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Det er feil lynmeldings addresse." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Kan ikkje sletta e-postgodkjenning." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Stadfesting avbrutt." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Det er ikkje din Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Addressa blei fjerna." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -2043,7 +2199,9 @@ msgstr "Invitér nye brukarar" msgid "You are already subscribed to these users:" msgstr "Du tingar allereie oppdatering frå desse brukarane:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2164,7 +2322,9 @@ msgstr "Du må være logga inn for å bli med i ei gruppe." msgid "No nickname or ID." msgstr "Ingen kallenamn." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s blei medlem av gruppe %s" @@ -2173,11 +2333,13 @@ msgstr "%s blei medlem av gruppe %s" msgid "You must be logged in to leave a group." msgstr "Du må være innlogga for å melde deg ut av ei gruppe." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s forlot %s gruppa" @@ -2293,12 +2455,12 @@ msgstr "Bruk dette skjemaet for å lage ein ny gruppe." msgid "New message" msgstr "Ny melding" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Du kan ikkje sende melding til denne brukaren." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Ingen innhald." @@ -2306,7 +2468,7 @@ msgstr "Ingen innhald." msgid "No recipient specified." msgstr "Ingen mottakar spesifisert." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2571,7 +2733,7 @@ msgid "6 or more characters" msgstr "6 eller fleire teikn" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Godta" @@ -3959,47 +4121,77 @@ msgstr "" msgid "Save site notice" msgstr "Statusmelding" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "SMS innstillingar" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "Denne sida er ikkje tilgjengleg i eit" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Ljonmeldingadresse" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Godkjent mobiltelefonnummer." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Ventar på godkjenning for dette telefonnummeret." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Stadfestingskode" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Skriv inn koden du fekk på telefonen." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Godta" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "SMS telefon nummer" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, kun tall, med landskode" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Brukarval" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -4007,23 +4199,34 @@ msgstr "" "Send meg ein notis via SMS; eg forstår at dette kan føre til kostnadar fra " "min tilbydar." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Lagra brukarval." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Ingen telefonnummer." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Ingen mobiloperatør vald." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Det er alt ditt telefonnummer" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Det telefonnummeret er alt registrert hos ein annan brukar." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -4032,23 +4235,42 @@ msgstr "" "Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " "koden og veiledning på korleis du nyttar han." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Det er feil godkjennings nummer." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Stadfesting avbrutt." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Det er ikkje ditt telefonnummer" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS telefon nummer" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Telefontilbydar" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Velg ein tilbydar" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4057,7 +4279,8 @@ msgstr "" "Mobiloperatøren din. Ta kontakt på %s viss du kjenner ein mobiloperatør som " "aksepterer SMS-over-epost, men ikkje vistast her." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Ingen innskriven kode" @@ -5294,10 +5517,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Avbryt" @@ -5375,34 +5596,40 @@ msgstr "Kommandoen feila" msgid "Notice with that id does not exist" msgstr "Fann ingen profil med den IDen." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Brukaren har ikkje siste notis" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Orsak, men kommandoen er ikkje laga enno." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Dytta!" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5410,203 +5637,207 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Notis markert som favoritt." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Du er allereie medlem av den gruppa" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s blei medlem av gruppe %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Kunne ikkje fjerne %s fra %s gruppa " -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s forlot %s gruppa" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Fullt namn: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Stad: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Heimeside: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Om: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Direkte melding til %s sendt" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Ein feil oppstod ved sending av direkte melding." -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "Kan ikkje slå på notifikasjon." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Slett denne notisen" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Melding lagra" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "Eit problem oppstod ved lagring av notis." -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "Svar på denne notisen" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Spesifer namnet til brukaren du vil tinge" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Du tingar ikkje oppdateringar til den profilen." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Tingar %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Spesifer namnet til brukar du vil fjerne tinging på" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Tingar ikkje %s lengre" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Kommando ikkje implementert." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notifikasjon av." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Kan ikkje skru av notifikasjon." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notifikasjon på." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Kan ikkje slå på notifikasjon." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Tingar ikkje %s lengre" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Du tingar ikkje oppdateringar til den profilen." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:" msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Kan ikkje tinga andre til deg." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Kan ikkje tinga andre til deg." msgstr[1] "Kan ikkje tinga andre til deg." -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "Du er ikkje medlem av den gruppa." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du er ikkje medlem av den gruppa." msgstr[1] "Du er ikkje medlem av den gruppa." -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6464,6 +6695,10 @@ msgstr "Manglar argumentet ID." msgid "Repeat this notice?" msgstr "Svar på denne notisen" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Jau" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6663,47 +6898,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "eit par sekund sidan" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "~%d minutt sidan" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "omtrent ein time sidan" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "~%d timar sidan" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "omtrent ein dag sidan" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "~%d dagar sidan" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "omtrent ein månad sidan" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "~%d månadar sidan" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 380bb740fe..b4a417360b 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:04+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:34+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ 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 (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -77,8 +77,13 @@ msgstr "Zamknięte" msgid "Save access settings" msgstr "Zapisz ustawienia dostępu" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" @@ -108,7 +113,7 @@ msgstr "Nie ma takiej strony." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Brak takiego użytkownika." @@ -351,7 +356,7 @@ msgstr "Nie odnaleziono stanów z tym identyfikatorem." msgid "This status is already a favorite." msgstr "Ten stan jest już ulubiony." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Nie można utworzyć ulubionego wpisu." @@ -468,7 +473,7 @@ msgstr "Nie odnaleziono grupy." msgid "You are already a member of that group." msgstr "Jesteś już członkiem tej grupy." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Zostałeś zablokowany w tej grupie przez administratora." @@ -519,17 +524,17 @@ msgid "Invalid token." msgstr "Nieprawidłowy token." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -561,12 +566,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "Token żądania %s został odrzucony lub unieważniony." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Nieoczekiwane wysłanie formularza." @@ -824,27 +832,44 @@ msgstr "" "do ciebie zostanie usunięta, nie będzie mógł cię subskrybować w przyszłości " "i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Nie" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Nie blokuj tego użytkownika" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Tak" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokuj tego użytkownika" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Zapisanie informacji o blokadzie nie powiodło się." @@ -857,8 +882,8 @@ msgstr "Zapisanie informacji o blokadzie nie powiodło się." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Nie ma takiej grupy." @@ -917,16 +942,24 @@ msgstr "Nierozpoznany typ adresu %s." msgid "That address has already been confirmed." msgstr "Ten adres został już potwierdzony." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Nie można zaktualizować użytkownika." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Nie można usunąć potwierdzenia adresu e-mail." @@ -980,11 +1013,13 @@ msgstr "" "Na pewno usunąć tę aplikację? Wyczyści to wszystkie dane o aplikacji z bazy " "danych, w tym wszystkie istniejące połączenia użytkowników." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Nie usuwaj tej aplikacji" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Usuń tę aplikację" @@ -1019,11 +1054,13 @@ msgstr "Usuń wpis" msgid "Are you sure you want to delete this notice?" msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -1047,7 +1084,8 @@ msgstr "" "Na pewno usunąć tego użytkownika? Wyczyści to wszystkie dane o użytkowniku z " "bazy danych, bez utworzenia kopii zapasowej." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Usuń tego użytkownika" @@ -1158,15 +1196,13 @@ msgid "Reset back to default" msgstr "Przywróć domyślne ustawienia" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Zapisz" @@ -1292,31 +1328,43 @@ msgstr "Nie można utworzyć aliasów." msgid "Options saved." msgstr "Zapisano opcje." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Ustawienia adresu e-mail" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Zarządzanie, jak otrzymywać wiadomości e-mail od %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adres" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Adres e-mail" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Obecnie potwierdzone adresy e-mail." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Usuń" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1325,106 +1373,141 @@ msgstr "" "(także w wiadomościach niechcianych), czy otrzymałeś wiadomość z dalszymi " "instrukcjami." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Anuluj" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Adres e-mail" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Adres e-mail, taki jak \"NazwaUżytkownika@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Dodaj" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Wiadomości przychodzące" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Wyślij wiadomość e-mail na ten adres, aby wysyłać nowe wpisy." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Używaj nowego adresu e-mail do wysyłania; anuluj poprzedni." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Nowe" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferencje" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Wyślij wpisy nowych subskrypcji przez e-mail." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Wyślij wiadomość e-mail, kiedy ktoś doda mój wpis jako ulubiony." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Wyślij wiadomość e-mail, kiedy ktoś wyśle prywatną wiadomość." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Wyślij wiadomość e-mail, kiedy ktoś wyśle odpowiedź \"@\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Pozwól przyjaciołom na szturchanie mnie i wyślij mi wiadomość e-mail." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Chcę wysyłać wpisy przez wiadomości e-mail." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Opublikuj MicroID adresu e-mail." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Zapisano preferencje." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Zapisano preferencje wyglądu." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Brak adresu e-mail." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Nie można znormalizować tego adresu e-mail" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "To nie jest prawidłowy adres e-mail." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Ten adres e-mail jest już twój." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Ten adres e-mail należy już do innego użytkownika." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Nie można wprowadzić kodu potwierdzającego." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1433,43 +1516,56 @@ msgstr "" "skrzynce odbiorczej (także w wiadomościach niechcianych), czy otrzymałeś kod " "i instrukcje dotyczące jego użycia." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Brak oczekujących potwierdzeń do anulowania." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "To jest błędny adres komunikatora." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Anulowano potwierdzenie." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "To nie jest twój adres e-mail." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Adres został usunięty." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Brak przychodzącego adresu e-mail." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Nie można zaktualizować wpisu użytkownika." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Usunięto przychodzący adres e-mail." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Dodano nowy przychodzący adres e-mail." @@ -1660,15 +1756,17 @@ msgstr "" "Zostanie usunięty z grupy, nie będzie mógł wysyłać wpisów i subskrybować " "grupy w przyszłości." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Nie blokuj tego użytkownika w tej grupie" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Zablokuj tego użytkownika w tej grupie" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Błąd bazy danych podczas blokowania użytkownika w grupie." @@ -1847,11 +1945,15 @@ msgstr "Użytkownik nie został zablokowany w grupie." msgid "Error removing the block." msgstr "Błąd podczas usuwania blokady." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Ustawienia komunikatora" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1860,15 +1962,24 @@ msgstr "" "Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. " "Skonfiguruj adres i ustawienia poniżej." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "Komunikator nie jest dostępny." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Adres komunikatora" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Obecnie potwierdzone adresy Jabber/GTalk." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1878,11 +1989,9 @@ msgstr "" "czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy " "znajomych?)." -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Adres komunikatora" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1891,44 +2000,66 @@ msgstr "" "Adres Jabber lub GTalk, taki jak \"NazwaUżytkownika@example.org\". Najpierw " "upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub na GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferencje" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Wyślij mi wpisy przez Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Wyślij wpis, kiedy zmieni się mój stan na Jabber/GTalk." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Wyślij mi odpowiedzi przez Jabber/GTalk od osób, których nie subskrybuję." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Opublikuj MicroID adresu Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Zapisano preferencje." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Brak identyfikatora Jabbera." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Nie można znormalizować tego identyfikatora Jabbera" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "To nie jest prawidłowy identyfikator Jabbera" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Ten identyfikator Jabbera jest już twój." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Identyfikator Jabbera należy już do innego użytkownika." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1937,10 +2068,35 @@ msgstr "" "Kod potwierdzający został wysłany na dodany adres komunikatora. Należy " "zaakceptować otrzymywanie wiadomości od %s." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "To jest błędny adres komunikatora." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Nie można usunąć potwierdzenia adresu e-mail." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Anulowano potwierdzenie." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "To nie jest twój identyfikator Jabbera." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Adres został usunięty." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1983,7 +2139,9 @@ msgstr "Zaproś nowych użytkowników" msgid "You are already subscribed to these users:" msgstr "Jesteś już subskrybowany do tych użytkowników:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2107,7 +2265,9 @@ msgstr "Musisz być zalogowany, aby dołączyć do grupy." msgid "No nickname or ID." msgstr "Brak pseudonimu lub identyfikatora." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "Użytkownik %1$s dołączył do grupy %2$s" @@ -2116,11 +2276,13 @@ msgstr "Użytkownik %1$s dołączył do grupy %2$s" msgid "You must be logged in to leave a group." msgstr "Musisz być zalogowany, aby opuścić grupę." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Nie jesteś członkiem tej grupy." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "Użytkownik %1$s opuścił grupę %2$s" @@ -2231,12 +2393,12 @@ msgstr "Użyj tego formularza, aby utworzyć nową grupę." msgid "New message" msgstr "Nowa wiadomość" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Nie można wysłać wiadomości do tego użytkownika." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Brak treści." @@ -2244,7 +2406,7 @@ msgstr "Brak treści." msgid "No recipient specified." msgstr "Nie podano odbiorcy." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu." @@ -2500,7 +2662,7 @@ msgid "6 or more characters" msgstr "6 lub więcej znaków" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Potwierdź" @@ -3893,44 +4055,74 @@ msgstr "" msgid "Save site notice" msgstr "Zapisz wpis witryny" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Ustawienia SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Można otrzymywać wiadomości SMS przez e-mail od %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "Wiadomości SMS nie są dostępne." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Adres komunikatora" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Obecnie potwierdzone numery telefonów z włączoną usługą SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Oczekiwanie na potwierdzenie tego numeru telefonu." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Kod potwierdzający" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Podaj kod, który otrzymałeś na telefonie." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Potwierdź" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Numer telefonu SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferencje" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3938,23 +4130,34 @@ msgstr "" "Wyślij mi wpisy przez SMS. Rozumiem, że mogę otrzymywać większe rachunki od " "swojego operatora." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Zapisano preferencje." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Brak numeru telefonu." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Nie wybrano operatora." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Ten numer telefonu jest już twój." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Ten numer telefonu należy już do innego użytkownika." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3962,23 +4165,42 @@ msgstr "" "Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź telefon, " "czy otrzymałeś kod i instrukcje jak go użyć." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "To jest błędny numer potwierdzenia." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Anulowano potwierdzenie." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "To nie jest twój numer telefonu." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Numer telefonu SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Operator komórkowy" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Wybierz operatora" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -3988,7 +4210,8 @@ msgstr "" "wiadomości SMS przez e-mail, a nie znajduje się na liście, wyślij wiadomość " "e-mail na %s (w języku angielskim), aby nam o tym powiedzieć." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Nie podano kodu" @@ -5193,10 +5416,8 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Anuluj" @@ -5272,34 +5493,40 @@ msgstr "Polecenie nie powiodło się" msgid "Notice with that id does not exist" msgstr "Wpis z tym identyfikatorem nie istnieje." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Użytkownik nie posiada ostatniego wpisu." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Nie można odnaleźć użytkownika z pseudonimem %s." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Nie można odnaleźć lokalnego użytkownika z pseudonimem %s." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Te polecenie nie zostało jeszcze zaimplementowane." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Szturchanie samego siebie nie ma zbyt wiele sensu." -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Wysłano szturchnięcie do użytkownika %s." -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5310,57 +5537,55 @@ msgstr "" "Subskrybenci: %2$s\n" "Wpisy: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Zaznaczono wpis jako ulubiony." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Jesteś już członkiem tej grupy." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "Użytkownik %1$s dołączył do grupy %2$s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Nie można usunąć użytkownika %1$s z grupy %2$s." -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "Użytkownik %1$s opuścił grupę %2$s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Imię i nazwisko: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Położenie: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Strona domowa: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "O mnie: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5369,143 +5594,149 @@ msgstr "" "%s to zdalny profil; można wysyłać bezpośrednie wiadomości tylko do " "użytkowników na tym samym serwerze." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s." -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Nie można powtórzyć własnego wpisu" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Już powtórzono ten wpis" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Powtórzono wpis od użytkownika %s" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Błąd podczas powtarzania wpisu." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Wpis jest za długi - maksymalnie %1$d znaków, wysłano %2$d." -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Wysłano odpowiedź do %s." -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Błąd podczas zapisywania wpisu." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Podaj nazwę użytkownika do subskrybowania." -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Nie można subskrybować profili OMB za pomocą polecenia." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Subskrybowano użytkownika %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji." -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Usunięto subskrypcję użytkownika %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Nie zaimplementowano polecenia." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Wyłączono powiadomienia." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Nie można wyłączyć powiadomień." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Włączono powiadomienia." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Nie można włączyć powiadomień." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Polecenie logowania jest wyłączone" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Tego odnośnika można użyć tylko raz i będzie prawidłowy tylko przez dwie " "minuty: %s." -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Usunięto subskrypcję użytkownika %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Nie subskrybujesz nikogo." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Subskrybujesz tę osobę:" msgstr[1] "Subskrybujesz te osoby:" msgstr[2] "Subskrybujesz te osoby:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Nikt cię nie subskrybuje." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Ta osoba cię subskrybuje:" msgstr[1] "Te osoby cię subskrybują:" msgstr[2] "Te osoby cię subskrybują:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Nie jesteś członkiem żadnej grupy." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Jesteś członkiem tej grupy:" msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6475,6 +6706,10 @@ msgstr "Brak parametrów powrotu." msgid "Repeat this notice?" msgstr "Powtórzyć ten wpis?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Tak" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Powtórz ten wpis" @@ -6662,47 +6897,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "kilka sekund temu" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "około minutę temu" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "około %d minut temu" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "około godzinę temu" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "około %d godzin temu" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "blisko dzień temu" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "około %d dni temu" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "około miesiąc temu" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "około %d miesięcy temu" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 c0220c82b0..8d95f07c83 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:07+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:37+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -76,8 +76,13 @@ msgstr "Fechado" msgid "Save access settings" msgstr "Gravar configurações do site" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -109,7 +114,7 @@ msgstr "Página não encontrada." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utilizador não encontrado." @@ -350,7 +355,7 @@ msgstr "Nenhum estado encontrado com esse ID." msgid "This status is already a favorite." msgstr "Este estado já é um favorito." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Não foi possível criar o favorito." @@ -468,7 +473,7 @@ msgstr "Grupo não foi encontrado!" msgid "You are already a member of that group." msgstr "Já é membro desse grupo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Foi bloqueado desse grupo pelo gestor." @@ -520,17 +525,17 @@ msgid "Invalid token." msgstr "Tamanho inválido." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -564,12 +569,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Envio inesperado de formulário." @@ -827,27 +835,44 @@ msgstr "" "subscrição por este utilizador será cancelada, ele não poderá subscrevê-lo " "de futuro e você não receberá notificações das @-respostas dele." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Não" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Não bloquear este utilizador" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este utilizador" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Não foi possível gravar informação do bloqueio." @@ -860,8 +885,8 @@ msgstr "Não foi possível gravar informação do bloqueio." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Grupo não foi encontrado." @@ -920,16 +945,24 @@ msgstr "Tipo do endereço %s não reconhecido" msgid "That address has already been confirmed." msgstr "Esse endereço já tinha sido confirmado." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Não foi possível actualizar o utilizador." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Não foi possível apagar a confirmação do endereço electrónico." @@ -989,12 +1022,14 @@ msgstr "" "Tem a certeza de que quer apagar este utilizador? Todos os dados do " "utilizador serão eliminados da base de dados, sem haver cópias." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Não apagar esta nota" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Apagar esta nota" @@ -1030,11 +1065,13 @@ msgstr "Apagar nota" msgid "Are you sure you want to delete this notice?" msgstr "Tem a certeza de que quer apagar esta nota?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Não apagar esta nota" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Apagar esta nota" @@ -1058,7 +1095,8 @@ msgstr "" "Tem a certeza de que quer apagar este utilizador? Todos os dados do " "utilizador serão eliminados da base de dados, sem haver cópias." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Apagar este utilizador" @@ -1171,15 +1209,13 @@ msgid "Reset back to default" msgstr "Repor predefinição" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Gravar" @@ -1317,31 +1353,43 @@ msgstr "Não foi possível criar sinónimos." msgid "Options saved." msgstr "Opções gravadas." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Configurações do correio electrónico" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Defina como receberá mensagens electrónicas de %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Endereço" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Endereço de correio electrónico" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Endereço de correio já confirmado." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Remover" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1349,111 +1397,146 @@ msgstr "" "A aguardar a confirmação deste endereço. Procure na sua caixa de entrada (ou " "na caixa de spam!) uma mensagem com mais instruções." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Endereço de correio electrónico" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "" "Endereço de correio electrónico, por ex. \"nomedeutilizador@exemplo.pt\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Adicionar" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correio recebido" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Envie mensagens electrónicas para este endereço para publicar notas." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Crie um endereço electrónico novo para publicações; cancela o antigo." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Novo" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferências" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Enviem-me notificação electrónica das novas subscrições." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Enviem-me notificação electrónica quando uma nota minha é adicionada às " "favoritas." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" "Enviem-me notificação electrónica quando me enviarem uma mensagem privada." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" "Enviem-me notificação electrónica quando me enviarem uma \"@-resposta\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir que amigos me toquem e enviem mensagens electrónicas." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Quero publicar notas por correio electrónico." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publicar uma MicroID para o meu endereço electrónico." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Preferências gravadas." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Preferências de estilo foram gravadas." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Sem endereço de correio electrónico." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 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 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correio electrónico é inválido." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Esse já é o seu endereço electrónico." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Esse endereço electrónico já pertence a outro utilizador." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1462,43 +1545,56 @@ msgstr "" "forneceu. Procure na caixa de entrada (e na caixa de spam!) o código e as " "respectivas instruções de utilização." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Esse endereço de mensagens instantâneas está errado." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Confirmação cancelada." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Esse não é o seu endereço electrónico." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "O endereço foi removido." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Sem endereço electrónico de entrada." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Não foi possível actualizar o registo do utilizador." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Endereço electrónico de entrada foi removido." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Adicionado endereço electrónico de entrada novo." @@ -1692,15 +1788,17 @@ msgstr "" "\"%2$s\"? Ele será removido do grupo, impossibilitado de publicar e " "impossibilitado de subscrever o grupo no futuro." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Não bloquear acesso deste utilizador a este grupo" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Bloquear acesso deste utilizador a este grupo" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Erro na base de dados ao bloquear acesso do utilizador ao grupo." @@ -1883,11 +1981,15 @@ msgstr "Acesso do utilizador ao grupo não foi bloqueado." msgid "Error removing the block." msgstr "Erro ao remover o bloqueio." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Configurações do IM" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1896,15 +1998,24 @@ msgstr "" "Pode enviar e receber notas através de [mensagens instantâneas](%%doc.im%%) " "Jabber/GTalk. Configure o seu endereço e outras definições abaixo." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "MI não está disponível." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Endereço IM" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Endereço do Jabber/GTalk já confirmado." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1914,11 +2025,9 @@ msgstr "" "enviadas para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de " "amigos?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Endereço IM" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1928,43 +2037,65 @@ msgstr "" "Primeiro, certifique-se de que adicionou %s à sua lista de amigos no cliente " "MI ou no GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferências" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Enviar-me notas via Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar uma nota quando o meu estado no Jabber/GTalk se altera." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Enviar-me via Jabber/GTalk respostas de pessoas que não subscrevo." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar uma MicroID para o meu endereço Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Preferências gravadas." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Não introduziu o Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Não é possível normalizar esse Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Jabber ID não é válido" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Esse já é o seu Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "O Jabber ID introduzido já pertence a outro utilizador." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1973,10 +2104,35 @@ msgstr "" "Um código de confirmação foi enviado para o endereço fornecido. Tem que " "aprovar que %s envie mensagens para si." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Esse endereço de mensagens instantâneas está errado." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Não foi possível apagar a confirmação do endereço electrónico." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Confirmação cancelada." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Esse não é o seu Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "O endereço foi removido." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -2021,7 +2177,9 @@ msgstr "Convidar novos utilizadores" msgid "You are already subscribed to these users:" msgstr "Já subscreveu estes utilizadores:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2145,7 +2303,9 @@ msgstr "Precisa de iniciar uma sessão para se juntar a um grupo." msgid "No nickname or ID." msgstr "Nenhuma utilizador." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s juntou-se ao grupo %2$s" @@ -2154,11 +2314,13 @@ msgstr "%1$s juntou-se ao grupo %2$s" msgid "You must be logged in to leave a group." msgstr "Precisa de iniciar uma sessão para deixar um grupo." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Não é um membro desse grupo." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" @@ -2274,12 +2436,12 @@ msgstr "Use este formulário para criar um grupo novo." msgid "New message" msgstr "Mensagem nova" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Não pode enviar uma mensagem a este utilizador." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Sem conteúdo!" @@ -2287,7 +2449,7 @@ msgstr "Sem conteúdo!" msgid "No recipient specified." msgstr "Não especificou um destinatário." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio." @@ -2553,7 +2715,7 @@ msgid "6 or more characters" msgstr "6 ou mais caracteres" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirmação" @@ -3960,44 +4122,74 @@ msgstr "" msgid "Save site notice" msgstr "Aviso do site" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Configurações de SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Pode receber SMSs do site %%site.name%% por correio electrónico." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS não está disponível." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Endereço IM" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telefone com serviço SMS activo já confirmado." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "A aguardar confirmação deste número de telefone." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Código de confirmação" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Introduza o código que recebeu no seu telefone." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmação" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Número de telefone para SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telefone, sem pontuação ou espaços, com código de área" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferências" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -4005,23 +4197,34 @@ msgstr "" "Enviem-me notas por SMS; compreendo que o meu operador poderá vir a facturar-" "me montantes exorbitantes." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Preferências gravadas." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Nenhum número de telefone." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Operador não foi seleccionado." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Esse já é o seu número de telefone." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Esse número de telefone já pertence a outro utilizador." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -4030,23 +4233,42 @@ msgstr "" "no seu telefone se recebeu o código e as respectivas instruções de " "utilização." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Esse número de confirmação está errado." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Confirmação cancelada." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Esse número de telefone não é o seu." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Número de telefone para SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Operador móvel" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Seleccione um operador" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4056,7 +4278,8 @@ msgstr "" "electrónico mas não está listado, diga-nos enviando um correio electrónico " "para %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Nenhum código introduzido" @@ -5289,10 +5512,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -5366,34 +5587,40 @@ msgstr "Comando falhou" msgid "Notice with that id does not exist" msgstr "Não existe nenhuma nota com essa identificação" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Utilizador não tem nenhuma última nota" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Não foi encontrado um utilizador com a alcunha %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Não foi encontrado um utilizador com a alcunha %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Desculpe, este comando ainda não foi implementado." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Não faz muito sentido tocar-nos a nós mesmos!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Cotovelada enviada a %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5404,198 +5631,202 @@ msgstr "" "Subscritores: %2$s\n" "Notas: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Nota marcada como favorita." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Já é membro desse grupo" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Não foi possível juntar o utilizador %s ao grupo %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Não foi possível adicionar %1$s ao grupo %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s juntou-se ao grupo %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Não foi possível remover o utilizador %s do grupo %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s deixou o grupo %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Localidade: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Página pessoal: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Mensagem demasiado extensa - máx. %d caracteres, enviou %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "Mensagem demasiado extensa - máx. %1$d caracteres, enviou %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Mensagem directa para %s enviada" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Erro no envio da mensagem directa." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Não pode repetir a sua própria nota" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Já repetiu essa nota" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Nota de %s repetida" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Erro ao repetir nota." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Nota demasiado extensa - máx. %d caracteres, enviou %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Resposta a %s enviada" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Erro ao gravar nota." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Introduza o nome do utilizador para subscrever" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Não subscreveu esse perfil." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Subscreveu %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Introduza o nome do utilizador para deixar de subscrever" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Deixou de subscrever %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Comando ainda não implementado." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notificação desligada." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Não foi possível desligar a notificação." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notificação ligada." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Não foi possível ligar a notificação." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Comando para iniciar sessão foi desactivado" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Esta ligação é utilizável uma única vez e só durante os próximos 2 minutos: %" "s" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Deixou de subscrever %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Não subscreveu ninguém." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Subscreveu esta pessoa:" msgstr[1] "Subscreveu estas pessoas:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Ninguém subscreve as suas notas." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta pessoa subscreve as suas notas:" msgstr[1] "Estas pessoas subscrevem as suas notas:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Não está em nenhum grupo." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Está no grupo:" msgstr[1] "Está nos grupos:" -#: lib/command.php:812 +#: lib/command.php:838 #, fuzzy msgid "" "Commands:\n" @@ -6539,6 +6770,10 @@ msgstr "Sem argumentos return-to." msgid "Repeat this notice?" msgstr "Repetir esta nota?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Sim" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Repetir esta nota" @@ -6728,47 +6963,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderar" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "há alguns segundos" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "há cerca de um minuto" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "há cerca de %d minutos" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "há cerca de uma hora" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "há cerca de %d horas" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "há cerca de um dia" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "há cerca de %d dias" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "há cerca de um mês" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "há cerca de %d meses" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 68752209f9..ee53b83465 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:10+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:40+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 (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -75,8 +75,13 @@ msgstr "Fechado" msgid "Save access settings" msgstr "Salvar as configurações de acesso" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Salvar" @@ -107,7 +112,7 @@ msgstr "Esta página não existe." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Este usuário não existe." @@ -352,7 +357,7 @@ msgstr "Não foi encontrado nenhum status com esse ID." msgid "This status is already a favorite." msgstr "Esta mensagem já é favorita!" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Não foi possível criar a favorita." @@ -471,7 +476,7 @@ msgstr "O grupo não foi encontrado!" msgid "You are already a member of that group." msgstr "Você já é membro desse grupo." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "O administrador desse grupo bloqueou sua inscrição." @@ -522,17 +527,17 @@ msgid "Invalid token." msgstr "Token inválido." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -568,12 +573,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "O token %s solicitado foi negado e revogado." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Submissão inesperada de formulário." @@ -834,27 +842,44 @@ msgstr "" "nenhuma notificação acerca de qualquer citação (@usuário) que ele fizer de " "você." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Não" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Não bloquear este usuário" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Sim" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuário" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Não foi possível salvar a informação de bloqueio." @@ -867,8 +892,8 @@ msgstr "Não foi possível salvar a informação de bloqueio." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Esse grupo não existe." @@ -927,16 +952,24 @@ msgstr "Tipo de endereço desconhecido %s" msgid "That address has already been confirmed." msgstr "Esse endereço já foi confirmado." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Não foi possível atualizar o usuário." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Não foi possível excluir a confirmação de e-mail." @@ -991,11 +1024,13 @@ msgstr "" "desta aplicação do banco de dados, incluindo todas as conexões existentes " "com os usuários." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Não excluir esta aplicação" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Excluir esta aplicação" @@ -1030,11 +1065,13 @@ msgstr "Excluir a mensagem" msgid "Are you sure you want to delete this notice?" msgstr "Tem certeza que deseja excluir esta mensagem?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Não excluir esta mensagem." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -1058,7 +1095,8 @@ msgstr "" "Tem certeza que deseja excluir este usuário? Isso eliminará todos os dados " "deste usuário do banco de dados, sem cópia de segurança." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Excluir este usuário" @@ -1171,15 +1209,13 @@ msgid "Reset back to default" msgstr "Restaura de volta ao padrão" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Salvar" @@ -1305,31 +1341,43 @@ msgstr "Não foi possível criar os apelidos." msgid "Options saved." msgstr "As configurações foram salvas." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Configurações do e-mail" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Configure o recebimento de e-mails de %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Endereço" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Endereço de e-mail" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Endereço de e-mail já confirmado." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Remover" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1337,110 +1385,145 @@ msgstr "" "Aguardando a confirmação deste endereço. Procure em sua caixa de entrada (e " "de spam!) por uma mensagem com mais instruções." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Endereço de e-mail" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Endereço de e-mail, ex: \"usuario@exemplo.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Adicionar" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "E-mail de recebimento" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Envie e-mails para esse endereço para publicar novas mensagens." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Cria um novo endereço de e-mail para publicar e cancela o antigo." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Novo" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Preferências" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Envie-me notificações de novos assinantes por e-mail." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envie-me um e-mail quando alguém adicionar alguma mensagem minha como " "favorita." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Envie-me um e-mail quando alguém me mandar uma mensagem particular." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" "Envie-me um e-mail quando alguém mandar uma mensagem citando meu nome " "(\"@nome\")." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Permita que meus amigos chamem minha atenção e enviem-me e-mails." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Eu quero publicar mensagens por e-mail." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publique um MicroID para meu endereço de e-mail." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "As preferências foram salvas." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "As configurações da aparência foram salvas." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Nenhum endereço de e-mail." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 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 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Esse já é seu endereço de e-mail." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Esse endereço de e-mail já pertence à outro usuário." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1449,43 +1532,56 @@ msgstr "" "informou. Verifique a sua caixa de entrada (e de spam!) para o código e " "instruções sobre como usá-lo." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Isso é um endereço de MI errado." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "A confirmação foi cancelada." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Esse não é seu endereço de email." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "O endereço foi removido." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Nenhum endereço de e-mail para recebimentos." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Não foi possível atualizar o registro do usuário." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "O endereço de e-mail de recebimento foi removido." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" "Foi adicionado um novo endereço de e-mail para recebimento de mensagens." @@ -1678,15 +1774,17 @@ msgstr "" "será removido do grupo e impossibilitado de publicar e de se juntar ao grupo " "futuramente." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Não bloquear este usuário neste grupo" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Bloquear este usuário neste grupo" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" "Ocorreu um erro no banco de dados ao tentar bloquear o usuário no grupo." @@ -1870,11 +1968,15 @@ msgstr "O usuário não está bloqueado no grupo." msgid "Error removing the block." msgstr "Erro na remoção do bloqueio." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Configurações do MI" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1883,15 +1985,24 @@ msgstr "" "Você pode enviar e receber mensagens através dos [mensageiros instantâneos](%" "%doc.im%%) Jabber/GTalk. Configure seu endereço e opções abaixo." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "MI não está disponível" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Endereço do MI" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Endereço de Jabber/GTalk já confirmado." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1901,11 +2012,9 @@ msgstr "" "GTalk por uma mensagem com mais instruções (Você adicionou %s à sua lista de " "contatos?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Endereço do MI" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1915,45 +2024,67 @@ msgstr "" "certifique-se de adicionar %s à sua lista de contatos em seu cliente de MI " "ou no GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Preferências" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Envie-me mensagens via Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envie-me respostas de pessoas que eu não estou assinando através do Jabber/" "GTalk." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publique um MicroID para meu endereço de Jabber/Gtalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "As preferências foram salvas." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Nenhuma ID de Jabber." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Não foi possível normalizar essa ID do Jabber" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Não é uma ID de Jabber válida" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Essa já é sua ID do Jabber." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Esta ID do Jabber já pertence à outro usuário." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1962,10 +2093,35 @@ msgstr "" "Um código de confirmação foi enviado para o endereço de IM que você " "informou. Você deve permitir que %s envie mensagens para você." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Isso é um endereço de MI errado." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Não foi possível excluir a confirmação de e-mail." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "A confirmação foi cancelada." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Essa não é sua ID do Jabber." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "O endereço foi removido." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2009,7 +2165,9 @@ msgstr "Convidar novos usuários" msgid "You are already subscribed to these users:" msgstr "Você já está assinando esses usuários:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2132,7 +2290,9 @@ msgstr "Você deve estar autenticado para se associar a um grupo." msgid "No nickname or ID." msgstr "Nenhum apelido ou identificação." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s associou-se ao grupo %2$s" @@ -2141,11 +2301,13 @@ msgstr "%1$s associou-se ao grupo %2$s" msgid "You must be logged in to leave a group." msgstr "Você deve estar autenticado para sair de um grupo." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Você não é um membro desse grupo." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" @@ -2260,12 +2422,12 @@ msgstr "Utilize este formulário para criar um novo grupo." msgid "New message" msgstr "Nova mensagem" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Você não pode enviar mensagens para este usuário." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Nenhum conteúdo!" @@ -2273,7 +2435,7 @@ msgstr "Nenhum conteúdo!" msgid "No recipient specified." msgstr "Não foi especificado nenhum destinatário." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2536,7 +2698,7 @@ msgid "6 or more characters" msgstr "No mínimo 6 caracteres" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Confirmar" @@ -3936,44 +4098,74 @@ msgstr "Texto dos avisos do site (no máximo 255 caracteres; pode usar HTML)" msgid "Save site notice" msgstr "Salvar os avisos do site" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Configuração do SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Você pode receber mensagens SMS de %%site.name%% através do e-mail." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS não está disponível." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Endereço do MI" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telefone já habilitado para receber SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Aguardando a confirmação deste número de telefone." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Código de confirmação" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Informe o código que você recebeu no seu telefone." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Telefone para SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telefone, sem pontuação ou espaços, com código de área" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Preferências" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3981,23 +4173,34 @@ msgstr "" "Envie-me mensagens via SMS. Eu compreendo que isso pode gerar cobranças " "exorbitantes da minha operadora." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "As preferências foram salvas." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Nenhum número de telefone." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Não foi selecionada nenhuma operadora." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Esse já é seu número de telefone." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Esse número de telefone já pertence à outro usuário." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -4005,23 +4208,42 @@ msgstr "" "Um código de confirmação foi enviado para o número de telefone que você " "informou. Verifique no seu telefone o código e instruções sobre como usá-lo." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Isso é um número de confirmação errado." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "A confirmação foi cancelada." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Esse não é seu número de telefone." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Telefone para SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Operadora de celular" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Selecione uma operadora" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4030,7 +4252,8 @@ msgstr "" "A operadora do seu celular. Se você conhece uma operadora que aceita SMS via " "e-mail que não está listada aqui, informe-nos enviando uma mensagem para %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Não foi digitado nenhum código" @@ -5232,10 +5455,8 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Acesso padrão para esta aplicação: somente leitura ou leitura e escrita" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Cancelar" @@ -5311,34 +5532,40 @@ msgstr "O comando falhou" msgid "Notice with that id does not exist" msgstr "Não existe uma mensagem com essa id" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "O usuário não tem uma \"última mensagem\"" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Não foi possível encontrar um usuário com a identificação %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Não foi possível encontrar um usuário local com a identificação %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Desculpe, mas esse comando ainda não foi implementado." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Não faz muito sentido chamar a sua própria atenção!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Foi enviada a chamada de atenção para %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5349,57 +5576,55 @@ msgstr "" "Assinantes: %2$s\n" "Mensagens: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Mensagem marcada como favorita." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Você já é um membro desse grupo." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Não foi possível associar o usuário %s ao grupo %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s associou-se ao grupo %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Não foi possível remover o usuário %s do grupo %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s deixou o grupo %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Localização: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Site: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5408,142 +5633,148 @@ msgstr "" "%s é um perfil remoto; você pode só pode enviar mensagens diretas para " "usuários do mesmo servidor." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -"A mensagem é muito extensa - o máximo são %d caracteres e você enviou %d" +"A mensagem é muito extensa - o máximo são %1$d caracteres e você enviou %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "A mensagem direta para %s foi enviada" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Ocorreu um erro durante o envio da mensagem direta." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Você não pode repetir sua própria mensagem" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Você já repetiu essa mensagem" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Mensagem de %s repetida" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Erro na repetição da mensagem." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" "A mensagem é muito extensa - o máximo são %d caracteres e você enviou %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "A resposta a %s foi enviada" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Erro no salvamento da mensagem." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Especifique o nome do usuário que será assinado" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Não é possível assinar perfis OMB com comandos." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Efetuada a assinatura de %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifique o nome do usuário cuja assinatura será cancelada" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Cancelada a assinatura de %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "O comando não foi implementado ainda." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notificação desligada." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Não é possível desligar a notificação." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notificação ligada." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Não é possível ligar a notificação." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "O comando para autenticação está desabilitado" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Este link é utilizável somente uma vez e é válido somente por dois minutos: %" "s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Cancelada a assinatura de %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Você não está assinando ninguém." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Você já está assinando esta pessoa:" msgstr[1] "Você já está assinando estas pessoas:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Ninguém o assinou ainda." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta pessoa está assinando você:" msgstr[1] "Estas pessoas estão assinando você:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Você não é membro de nenhum grupo." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Você é membro deste grupo:" msgstr[1] "Você é membro destes grupos:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6489,6 +6720,10 @@ msgstr "Sem argumentos return-to." msgid "Repeat this notice?" msgstr "Repetir esta mensagem?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Sim" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Repetir esta mensagem" @@ -6675,47 +6910,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "alguns segundos atrás" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "cerca de %d minutos atrás" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "cerca de %d horas atrás" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "cerca de 1 dia atrás" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "cerca de %d dias atrás" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "cerca de 1 mês atrás" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "cerca de %d meses atrás" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 8fe51a80c6..64a9934d1c 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-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:16+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:43+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -77,8 +77,13 @@ msgstr "Закрыта" msgid "Save access settings" msgstr "Сохранить настройки доступа" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -108,7 +113,7 @@ msgstr "Нет такой страницы." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Нет такого пользователя." @@ -350,7 +355,7 @@ msgstr "Нет статуса с таким ID." msgid "This status is already a favorite." msgstr "Этот статус уже входит в число любимых." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Не удаётся создать любимую запись." @@ -471,7 +476,7 @@ msgstr "Группа не найдена." msgid "You are already a member of that group." msgstr "Вы уже являетесь членом этой группы." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Вы заблокированы из этой группы администратором." @@ -522,17 +527,17 @@ msgid "Invalid token." msgstr "Неправильный токен" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -564,12 +569,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "Запрос токена %s был запрещен и аннулирован." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Нетиповое подтверждение формы." @@ -829,27 +837,44 @@ msgstr "" "будет отписан от вас без возможности подписаться в будущем, а вам не будут " "приходить уведомления об @-ответах от него." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Нет" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Не блокировать этого пользователя" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Да" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Заблокировать пользователя." -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Не удаётся сохранить информацию о блокировании." @@ -862,8 +887,8 @@ msgstr "Не удаётся сохранить информацию о блок #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Нет такой группы." @@ -922,16 +947,24 @@ msgstr "Нераспознанный тип адреса %s." msgid "That address has already been confirmed." msgstr "Этот адрес уже подтверждён." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Не удаётся обновить пользователя." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Не удаётся удалить подверждение по электронному адресу." @@ -986,11 +1019,13 @@ msgstr "" "применении из базы данных, включая все существующие подключения " "пользователей." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Не удаляйте это приложение" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Удалить это приложение" @@ -1025,11 +1060,13 @@ msgstr "Удалить запись" msgid "Are you sure you want to delete this notice?" msgstr "Вы уверены, что хотите удалить эту запись?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Не удалять эту запись" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Удалить эту запись" @@ -1053,7 +1090,8 @@ msgstr "" "Вы действительно хотите удалить этого пользователя? Это повлечёт удаление " "всех данных о пользователе из базы данных без возможности восстановления." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Удалить этого пользователя" @@ -1166,15 +1204,13 @@ msgid "Reset back to default" msgstr "Восстановить значения по умолчанию" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Сохранить" @@ -1300,31 +1336,43 @@ msgstr "Не удаётся создать алиасы." msgid "Options saved." msgstr "Настройки сохранены." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Настройка почты" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Управление процессом получения электронной почты с %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Адрес" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Адрес эл. почты" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Подтверждённый в настоящее время электронный адрес." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Убрать" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1332,116 +1380,151 @@ msgstr "" "Ожидание подтверждения этого адреса. Проверьте свой почтовый ящик (и папку " "для спама!), там будут дальнейшие инструкции." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Отменить" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Адрес эл. почты" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Электронный адрес вида \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Добавить" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Входящий электронный адрес" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" "Отправляйте электронные письма на этот адрес для отсылки новых записей." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Создать новый адрес электронной почты для отсылки сообщений; отменяет старый " "адрес." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Новый" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Предпочтения" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Уведомлять меня о новых подписчиках по почте." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " "запись в число любимых." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " "приватное сообщение." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне «@-" "ответ»." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" "Разрешить друзьям «подталкивать» меня и посылать мне электронные сообщения." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Я хочу отправлять записи по электронной почте." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Опубликовать MicroID для моего электронного адреса." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Предпочтения сохранены." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Настройки оформления сохранены." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Нет электронного адреса." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Не удаётся стандартизировать этот электронный адрес" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неверный электронный адрес." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Это уже Ваш электронный адрес." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Этот электронный адрес уже задействован другим пользователем." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Не удаётся вставить код подтверждения." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1450,43 +1533,56 @@ msgstr "" "папку входящей почты (а также папку спама!), чтобы найти этот кода и " "инструкции по его использованию." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Нет подтверждения отказа." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Это неверный IM-адрес." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Подтверждение отменено." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Это не Ваш электронный адрес." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Адрес удалён." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Нет входящего электронного адреса." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Не удаётся обновить пользовательскую запись." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Входящий электронный адрес удалён." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Новый входящий электронный адрес добавлен." @@ -1677,15 +1773,17 @@ msgstr "" "Пользователь будет удалён из группы без возможности отправлять и " "подписываться на группу в будущем." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Не блокировать этого пользователя из этой группы" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Заблокировать этого пользователя из этой группы" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Ошибка базы данных при блокировании пользователя из группы." @@ -1868,11 +1966,15 @@ msgstr "Пользователь не заблокировал вас из гр msgid "Error removing the block." msgstr "Ошибка при удалении данного блока." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "IM-установки" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1881,15 +1983,24 @@ msgstr "" "Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" "(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM не доступен." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IM-адрес" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Подтверждённый в настоящее время Jabber/Gtalk - адрес." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1899,11 +2010,9 @@ msgstr "" "сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список " "контактов?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "IM-адрес" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1913,44 +2022,66 @@ msgstr "" "убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" "мессенджере или в GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Предпочтения" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Посылать мне записи через Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публиковать запись, когда мой Jabber/GTalk - статус изменяется." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Опубликовать MicroID для моего Jabber/GTalk - адреса." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Предпочтения сохранены." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Не Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Не удаётся стандартизировать этот Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Неверный код Jabber ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Это уже Ваш Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Этот Jabber ID уже используется другим пользователем." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1959,10 +2090,35 @@ msgstr "" "Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить " "%s для отправки вам сообщений." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Это неверный IM-адрес." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Не удаётся удалить подверждение по электронному адресу." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Подтверждение отменено." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Это не Ваш Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Адрес удалён." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2007,7 +2163,9 @@ msgstr "Пригласить новых пользователей" msgid "You are already subscribed to these users:" msgstr "Вы уже подписаны на пользователя:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2130,7 +2288,9 @@ msgstr "Вы должны авторизоваться для вступлени msgid "No nickname or ID." msgstr "Нет имени или ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s вступил в группу %2$s" @@ -2139,11 +2299,13 @@ msgstr "%1$s вступил в группу %2$s" msgid "You must be logged in to leave a group." msgstr "Вы должны авторизоваться, чтобы покинуть группу." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Вы не являетесь членом этой группы." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s покинул группу %2$s" @@ -2253,12 +2415,12 @@ msgstr "Используйте эту форму для создания нов msgid "New message" msgstr "Новое сообщение" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Вы не можете послать сообщение этому пользователю." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Нет контента!" @@ -2266,7 +2428,7 @@ msgstr "Нет контента!" msgid "No recipient specified." msgstr "Нет адресата." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." @@ -2523,7 +2685,7 @@ msgid "6 or more characters" msgstr "6 или больше знаков" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Подтверждение" @@ -3912,46 +4074,76 @@ msgstr "Текст уведомления сайта (максимум 255 си msgid "Save site notice" msgstr "Сохранить уведомление сайта" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Установки СМС" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "Отправка СМС недоступна." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM-адрес" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" "Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "В ожидании подтверждения данного номера телефона." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Код подтверждения" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Введите код, который вы получили по телефону." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Подтверждение" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Номер телефона для СМС" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Номер телефона, без пробелов, с кодом зоны" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Предпочтения" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3959,23 +4151,34 @@ msgstr "" "Посылать мне записи через СМС; я понимаю, что это может привести к расходам " "по пересылке." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Предпочтения сохранены." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Нет номера телефона." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Провайдер не выбран." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Это уже ваш номер телефона." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Этот телефонный номер уже задействован другим пользователем." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3983,23 +4186,42 @@ msgstr "" "Код подтверждения выслан на мобильный номер, который вы добавили. Проверьте " "телефон для нахождения этого кода и инструкций по его использованию." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Это неверный номер подтверждения." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Подтверждение отменено." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Это не Ваш номер телефона." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Номер телефона для СМС" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Выбор провайдера" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Выбор провайдера" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4009,7 +4231,8 @@ msgstr "" "принимает СМС при помощи электронных адресов и которого нет в списке ниже, " "то сообщите нам об этом по электронной почте %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Код не введён" @@ -5209,10 +5432,8 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Доступ по умолчанию для этого приложения: только чтение или чтение и запись" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Отменить" @@ -5288,34 +5509,40 @@ msgstr "Команда неудачна" msgid "Notice with that id does not exist" msgstr "Записи с таким id не существует" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "У пользователя нет последней записи." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Не удаётся найти пользователя с именем %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Не удаётся найти пользователя с именем %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Простите, эта команда ещё не выполнена." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Нет смысла «подталкивать» самого себя!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "«Подталкивание» послано %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5326,57 +5553,55 @@ msgstr "" "Подписчиков: %2$s\n" "Записей: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Запись помечена как любимая." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Вы уже являетесь членом этой группы." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Не удаётся присоединить пользователя %s к группе %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%1$s вступил в группу %2$s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Не удаётся удалить пользователя %1$s из группы %2$s." -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%1$s покинул группу %2$s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Полное имя: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Месторасположение: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Домашняя страница: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "О пользователе: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5385,141 +5610,148 @@ msgstr "" "%s профиль другой системы; вы можете отсылать личное сообщение только " "пользователям этой системы." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Сообщение слишком длинное — не больше %d символов, вы посылаете %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "" +"Сообщение слишком длинное — не больше %1$d символов, вы отправили %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Прямое сообщение для %s послано." -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Ошибка при отправке прямого сообщения." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Невозможно повторить собственную запись." -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Эта запись уже повторена" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Запись %s повторена" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Ошибка при повторении записи." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Запись слишком длинная — не больше %d символов, вы посылаете %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Ответ %s отправлен" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Проблемы с сохранением записи." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Укажите имя пользователя для подписки." -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Невозможно подписаться командой на профили OMB." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Подписано на %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Укажите имя пользователя для отмены подписки." -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Отписано от %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Команда ещё не выполнена." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Оповещение отсутствует." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Нет оповещения." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Есть оповещение." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Есть оповещение." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Команда входа отключена" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "Эта ссылка действительна только один раз в течение 2 минут: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Отписано %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Вы ни на кого не подписаны." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Вы подписаны на этих людей:" msgstr[1] "Вы подписаны на этих людей:" msgstr[2] "Вы подписаны на этих людей:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Никто не подписан на вас." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Эти люди подписались на вас:" msgstr[1] "Эти люди подписались на вас:" msgstr[2] "Эти люди подписались на вас:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Вы не состоите ни в одной группе." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Вы являетесь участником следующих групп:" msgstr[1] "Вы являетесь участником следующих групп:" msgstr[2] "Вы являетесь участником следующих групп:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6487,6 +6719,10 @@ msgstr "Нет аргумента return-to." msgid "Repeat this notice?" msgstr "Повторить эту запись?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Да" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Повторить эту запись" @@ -6673,47 +6909,57 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "пару секунд назад" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "около минуты назад" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "около %d минут(ы) назад" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "около часа назад" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "около %d часа(ов) назад" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "около дня назад" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "около %d дня(ей) назад" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "около месяца назад" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "около %d месяца(ев) назад" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "около года назад" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 61d593bcf6..c7ecc89f08 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -69,8 +69,13 @@ msgstr "" msgid "Save access settings" msgstr "" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -100,7 +105,7 @@ msgstr "" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "" @@ -329,7 +334,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "" @@ -445,7 +450,7 @@ msgstr "" msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -496,17 +501,17 @@ msgid "Invalid token." msgstr "" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -537,12 +542,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "" @@ -794,27 +802,42 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +msgctxt "BUTTON" msgid "No" msgstr "" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +msgctxt "BUTTON" msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -827,8 +850,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "" @@ -887,16 +910,24 @@ msgstr "" msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "" -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "" @@ -948,11 +979,13 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "" @@ -985,11 +1018,13 @@ msgstr "" msgid "Are you sure you want to delete this notice?" msgstr "" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1011,7 +1046,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "" @@ -1122,15 +1158,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1256,178 +1290,229 @@ msgstr "" msgid "Options saved." msgstr "" -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" msgstr "" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +msgctxt "BUTTON" msgid "Remove" msgstr "" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +msgctxt "BUTTON" msgid "Cancel" msgstr "" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +msgctxt "BUTTON" msgid "Add" msgstr "" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +msgctxt "BUTTON" msgid "New" msgstr "" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +msgid "Email preferences" msgstr "" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +msgid "Email preferences saved." msgstr "" -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "" -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +msgid "That is the wrong email address." msgstr "" -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +msgid "Email confirmation cancelled." msgstr "" -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +msgid "The email address was removed." msgstr "" -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1609,15 +1694,17 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1785,90 +1872,144 @@ msgstr "" msgid "Error removing the block." msgstr "" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, 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 "" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +msgid "IM preferences" +msgstr "" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "" + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, 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 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +msgid "Couldn't delete IM confirmation." +msgstr "" + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +msgid "IM confirmation cancelled." +msgstr "" + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "" +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +msgid "The IM address was removed." +msgstr "" + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1909,7 +2050,9 @@ msgstr "" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2002,7 +2145,9 @@ msgstr "" msgid "No nickname or ID." msgstr "" -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2011,11 +2156,13 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "" @@ -2120,12 +2267,12 @@ msgstr "" msgid "New message" msgstr "" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "" @@ -2133,7 +2280,7 @@ msgstr "" msgid "No recipient specified." msgstr "" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2380,7 +2527,7 @@ msgid "6 or more characters" msgstr "" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "" @@ -3674,95 +3821,150 @@ msgstr "" msgid "Save site notice" msgstr "" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +msgid "SMS address" +msgstr "" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +msgctxt "BUTTON" +msgid "Confirm" +msgstr "" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +msgid "SMS preferences" +msgstr "" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +msgid "SMS preferences saved." +msgstr "" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +msgid "SMS confirmation cancelled." +msgstr "" + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +msgid "The SMS phone number was removed." +msgstr "" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -4902,9 +5104,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "" @@ -4977,34 +5178,40 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5012,195 +5219,199 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "" -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, php-format -msgid "%s joined group %s" +msgid "Could not remove user %s from group %s" msgstr "" -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "" - -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6021,6 +6232,10 @@ msgstr "" msgid "Repeat this notice?" msgstr "" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "" @@ -6207,47 +6422,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index be55652d38..91bf80f89c 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:19+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:46+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -73,8 +73,13 @@ msgstr "Stängd" msgid "Save access settings" msgstr "Spara inställningar för åtkomst" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -104,7 +109,7 @@ msgstr "Ingen sådan sida" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ingen sådan användare." @@ -342,7 +347,7 @@ msgstr "Ingen status hittad med det ID:t." msgid "This status is already a favorite." msgstr "Denna status är redan en favorit." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Kunde inte skapa favorit." @@ -459,7 +464,7 @@ msgstr "Grupp hittades inte." msgid "You are already a member of that group." msgstr "Du är redan en medlem i denna grupp." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Du har blivit blockerad från denna grupp av administratören." @@ -510,17 +515,17 @@ msgid "Invalid token." msgstr "Ogiltig token." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -551,12 +556,15 @@ msgstr "Begäran-token %s har godkänts. Byt ut den mot en åtkomst-token." msgid "The request token %s has been denied and revoked." msgstr "Begäran-token %s har nekats och återkallats." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Oväntat inskick av formulär." @@ -815,27 +823,44 @@ msgstr "" "prenumeration på dig tas bort, de kommer inte kunna prenumerera på dig i " "framtiden och du kommer inte bli underrättad om några @-svar från dem." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Nej" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Blockera inte denna användare" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Ja" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Blockera denna användare" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Misslyckades att spara blockeringsinformation." @@ -848,8 +873,8 @@ msgstr "Misslyckades att spara blockeringsinformation." #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Ingen sådan grupp." @@ -909,16 +934,24 @@ msgstr "Adresstypen %s känns inte igen." msgid "That address has already been confirmed." msgstr "Denna adress har redan blivit bekräftad." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Kunde inte uppdatera användare." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Kunde inte ta bort e-postbekräftelse." @@ -973,11 +1006,13 @@ msgstr "" "bort all data om applikationen från databasen, inklusive alla befintliga " "användaranslutningar." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Ta inte bort denna applikation" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Ta bort denna applikation" @@ -1012,11 +1047,13 @@ msgstr "Ta bort notis" msgid "Are you sure you want to delete this notice?" msgstr "Är du säker på att du vill ta bort denna notis?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Ta inte bort denna notis" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -1040,7 +1077,8 @@ msgstr "" "Är du säker på att du vill ta bort denna användare? Det kommer rensa all " "data om användaren från databasen, utan en säkerhetskopia." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Ta bort denna användare" @@ -1153,15 +1191,13 @@ msgid "Reset back to default" msgstr "Återställ till standardvärde" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Spara" @@ -1287,31 +1323,43 @@ msgstr "Kunde inte skapa alias." msgid "Options saved." msgstr "Alternativ sparade." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "E-postinställningar" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Hantera hur du får e-post från %%site.name%%" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adress" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "E-postadress" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Aktuell, bekräftad e-postadress." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Ta bort" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1319,107 +1367,141 @@ msgstr "" "Väntar bekräftelse av denna adress. Kontrollera din inkorg (och " "skräppostkorg!) efter ett meddelande med vidare instruktioner." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "E-postadress" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "E-postadress, såsom \"användarnamn@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Lägg till" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Inkommande e-post" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Skicka e-post till denna adress för att posta nya notiser." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Ange en ny e-postadress för att posta till; detta inaktiverar den gamla." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Ny" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Inställningar" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Skicka notiser om nya prenumerationer till mig genom e-post." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Skicka mig e-post när någon lägger till min notis som en favorit." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Skicka mig e-post när någon skickar mig ett privat meddelande." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Skicka mig e-post när någon skickar ett \"@-svar\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Tillåt vänner att knuffa mig och skicka e-post till mig." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Jag vill posta notiser genom min e-post." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Publicera ett MicroID för min e-postadress." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Inställningar sparade." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Utseendeinställningar sparade." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Ingen e-postadress." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Kan inte normalisera den e-postadressen" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Inte en giltig e-postadress." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Det är redan din e-postadress." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Den e-postadressen tillhör redan en annan användare." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Kunde inte infoga bekräftelsekod." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1428,43 +1510,56 @@ msgstr "" "din inkorg (och skräppostkorg!) för koden och instruktioner hur du använder " "den." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ingen väntande bekräftelse att avbryta." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Detta är fel IM-adress." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Bekräftelse avbruten." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Det är inte din e-postadress." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Adressen togs bort." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ingen inkommande e-postadress." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kunde inte uppdatera användaruppgift." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Inkommande e-postadress borttagen." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Ny inkommande e-postadress tillagd." @@ -1655,15 +1750,17 @@ msgstr "" "\"? De kommer bli borttagna från gruppen, inte kunna skriva till och inte " "kunna prenumerera på gruppen i framtiden." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Blockera inte denna användare från denna grupp" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Blockera denna användare från denna grupp" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Databasfel vid blockering av användare från grupp." @@ -1846,11 +1943,15 @@ msgstr "Användare är inte blockerad från grupp." msgid "Error removing the block." msgstr "Fel vid hävning av blockering." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Inställningar för snabbmeddelanden" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1859,15 +1960,24 @@ msgstr "" "Du kan skicka och ta emot notiser genom Jabber/GTalk-[snabbmeddelanden](%%" "doc.im%%). Konfigurera din adress och dina inställningar nedan." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM är inte tillgänglig." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "Adress för snabbmeddelanden" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Aktuell bekräftad Jabber/Gtalk-adress." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1876,11 +1986,9 @@ msgstr "" "Väntar på bekräftelse för denna adress. Kontrollera ditt Jabber/GTalk-konto " "för vidare instruktioner. (La du till %s i din kompislista?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "Adress för snabbmeddelanden" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1889,45 +1997,67 @@ msgstr "" "Jabber- eller GTalk-adress, som \"användarnamn@example.org\". Se först till " "att lägga till %s i din kompislista i din IM-klient eller hos GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Inställningar" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Skicka notiser till mig genom Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Posta en notis när min Jabber/GTalk-status ändras." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Skicka svar till mig genom Jabber/GTalk från personer som jag inte " "prenumererar på." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicera ett MicroID för min Jabber/GTalk-adress." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Inställningar sparade." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Inget Jabber-ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Kan inte normalisera detta Jabber-ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Inte ett giltigt Jabber-ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Detta är redan ditt Jabber-ID" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID:t tillhör redan en annan användare." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1936,10 +2066,35 @@ msgstr "" "En bekräftelsekod skickades till den IM-adress du angav. Du måste godkänna " "att %s får skicka meddelanden till dig." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Detta är fel IM-adress." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Kunde inte ta bort e-postbekräftelse." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Bekräftelse avbruten." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Detta är inte ditt Jabber-ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Adressen togs bort." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1981,7 +2136,9 @@ msgstr "Bjud in nya användare" msgid "You are already subscribed to these users:" msgstr "Du prenumererar redan på dessa användare:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2106,7 +2263,9 @@ msgstr "Du måste vara inloggad för att kunna gå med i en grupp." msgid "No nickname or ID." msgstr "Inget smeknamn eller ID." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s gick med i grupp %2$s" @@ -2115,11 +2274,13 @@ msgstr "%1$s gick med i grupp %2$s" msgid "You must be logged in to leave a group." msgstr "Du måste vara inloggad för att lämna en grupp." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Du är inte en medlem i den gruppen." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s lämnade grupp %2$s" @@ -2228,12 +2389,12 @@ msgstr "Använd detta formulär för att skapa en ny grupp." msgid "New message" msgstr "Nytt meddelande" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Du kan inte skicka ett meddelande till den användaren." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Inget innehåll!" @@ -2241,7 +2402,7 @@ msgstr "Inget innehåll!" msgid "No recipient specified." msgstr "Ingen mottagare angiven." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2499,7 +2660,7 @@ msgid "6 or more characters" msgstr "Minst 6 tecken" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Bekräfta" @@ -3890,44 +4051,74 @@ msgstr "Text för webbplatsnotis (max 255 tecken; HTML ok)" msgid "Save site notice" msgstr "Spara webbplatsnotis" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Inställningar för SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan ta emot SMS-meddelanden genom e-post från %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "SMS är inte tillgängligt." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "Adress för snabbmeddelanden" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Nuvarande bekäftat telefonnummer för SMS." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Väntar bekräftelse för detta telefonnummer." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Bekräftelsekod" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Fyll i koden du mottog i din telefon." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Bekräfta" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Telefonnummer för SMS" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Inställningar" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3935,23 +4126,34 @@ msgstr "" "Skicka notiser till mig via SMS. Jag är införstådd med att min operatör kan " "debitera mig." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Inställningar sparade." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Inget telefonnummer." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Ingen operatör vald." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Detta är redan ditt telefonnummer." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Detta telefonnumr tillhör redan en annan användare." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3959,23 +4161,42 @@ msgstr "" "En bekräftelsekod skickades till det telefonnummer du lagt till. Kontrollera " "din telefon för koden och instruktioner om hur du använder den." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Detta är fel bekräftelsenummer." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Bekräftelse avbruten." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Detta är inte ditt telefonnummer." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Telefonnummer för SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Mobiloperatör" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Välj en operatör" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -3985,7 +4206,8 @@ msgstr "" "SMS via e-post men som inte finns med i listan, skicka ett e-post till oss " "på %s och berätta." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Ingen kod ifylld" @@ -4012,7 +4234,6 @@ msgid "Invalid snapshot report URL." msgstr "Ogiltig rapport-URL för ögonblicksbild" #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" msgstr "Slumpmässigt vid webbförfrågningar" @@ -4601,7 +4822,7 @@ msgstr "Kunde inte uppdatera meddelande med ny URI." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" msgstr "Databasfel vid infogning av hashtag: %s" @@ -5182,34 +5403,29 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" -msgstr "Läs och skriv" +msgstr "läs och skriv" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" -msgstr "Skrivskyddad" +msgstr "skrivskyddad" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Godkänd %1$s - \"%2$s\" åtkomst." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Återkalla" @@ -5261,34 +5477,40 @@ msgstr "Kommando misslyckades" msgid "Notice with that id does not exist" msgstr "Notis med den ID:n finns inte" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Användare har ingen sista notis" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Kunde inte hitta en användare med smeknamnet %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Kunde inte hitta en lokal användare med smeknamnet %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Tyvärr, detta kommando är inte implementerat än." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Det verkar inte vara särskilt meningsfullt att knuffa dig själv!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Knuff skickad till %s" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5299,57 +5521,55 @@ msgstr "" "Prenumeranter: %2$s\n" "Notiser: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Notis markerad som favorit." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Du är redan en medlem i denna grupp" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "Kunde inte ansluta användare %s till groupp %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s gick med i grupp %s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Kunde inte ta bort användare %s från grupp %s" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s lämnade grupp %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Fullständigt namn: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Plats: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Hemsida: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Om: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5358,139 +5578,145 @@ msgstr "" "%s är en fjärrprofil; du kan bara skicka direktmeddelanden till användare på " "samma server." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Meddelande för långt - maximum är %d tecken, du skickade %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Direktmeddelande till %s skickat" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Fel vid sändning av direktmeddelande." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Kan inte upprepa din egen notis" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Redan upprepat denna notis" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Notis fron %s upprepad" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Fel vid upprepning av notis." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Notis för långt - maximum är %d tecken, du skickade %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Svar på %s skickat" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Fel vid sparande av notis." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Ange namnet på användaren att prenumerara på" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Kan inte prenumera på OMB-profiler via kommando." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Prenumerar på %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Ange namnet på användaren att avsluta prenumeration på" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Prenumeration hos %s avslutad" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Kommando inte implementerat än." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Notifikation av." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Kan inte sätta på notifikation." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Notifikation på." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Kan inte stänga av notifikation." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Inloggningskommando är inaktiverat" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Denna länk är endast användbar en gång, och gäller bara i 2 minuter: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Prenumeration avslutad %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Du prenumererar inte på någon." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du prenumererar på denna person:" msgstr[1] "Du prenumererar på dessa personer:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "Ingen prenumerar på dig." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Denna person prenumererar på dig:" msgstr[1] "Dessa personer prenumererar på dig:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Du är inte medlem i några grupper." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du är en medlem i denna grupp:" msgstr[1] "Du är en medlem i dessa grupper:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6456,6 +6682,10 @@ msgstr "Inga \"return-to\"-argument." msgid "Repeat this notice?" msgstr "Upprepa denna notis?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Ja" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Upprepa denna notis" @@ -6642,47 +6872,57 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "ett par sekunder sedan" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "för nån minut sedan" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "för %d minuter sedan" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "för en timma sedan" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "för %d timmar sedan" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "för en dag sedan" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "för %d dagar sedan" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "för en månad sedan" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "för %d månader sedan" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 1934cb51ad..bf599e41bc 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:22+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:49+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -72,8 +72,13 @@ msgstr "మూసివేయబడింది" msgid "Save access settings" msgstr "అందుబాటు అమరికలను భద్రపరచు" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" @@ -103,7 +108,7 @@ msgstr "అటువంటి పేజీ లేదు." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." @@ -336,7 +341,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." @@ -454,7 +459,7 @@ msgstr "గుంపు దొరకలేదు." msgid "You are already a member of that group." msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "నిర్వాహకులు ఆ గుంపు నుండి మిమ్మల్ని నిరోధించారు." @@ -506,17 +511,17 @@ msgid "Invalid token." msgstr "తప్పుడు పరిమాణం." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -549,12 +554,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "" @@ -811,27 +819,44 @@ msgstr "" "మీరు ఈ వాడుకరిని నిజంగానే నిరోధించాలనుకుంటున్నారా? ఆ తర్వాత, వారు మీ నుండి చందా విరమింపబడతారు, " "భవిష్యత్తులో మీకు చందా చేరలేరు, మరియు వారి నుండి @-స్పందనలని మీకు తెలియజేయము." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "కాదు" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "ఈ వాడుకరిని నిరోధించకు" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "అవును" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "నిరోధపు సమాచారాన్ని భద్రపరచడంలో విఫలమయ్యాం." @@ -844,8 +869,8 @@ msgstr "నిరోధపు సమాచారాన్ని భద్రప #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "అటువంటి గుంపు లేదు." @@ -906,16 +931,24 @@ msgstr "గుర్తుతెలియని చిరునామా రక msgid "That address has already been confirmed." msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధారితమైంది." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." @@ -969,11 +1002,13 @@ msgstr "" "మీరు నిజంగానే ఈ ఉపకరణాన్ని తొలగించాలనుకుంటున్నారా? ఇది ఆ ఉపకరణం గురించి భోగట్టాని, ప్రస్తుత " "వాడుకరుల అనుసంధానాలతో సహా, డాటాబేసు నుండి తొలగిస్తుంది." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "ఈ ఉపకరణాన్ని తొలగించకు" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "ఈ ఉపకరణాన్ని తొలగించు" @@ -1006,11 +1041,13 @@ msgstr "నోటీసుని తొలగించు" msgid "Are you sure you want to delete this notice?" msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించకు" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -1034,7 +1071,8 @@ msgstr "" "మీరు నిజంగానే ఈ వాడుకరిని తొలగించాలనుకుంటున్నారా? ఇది ఆ వాడుకరి భోగట్టాని డాటాబేసు నుండి తొలగిస్తుంది, " "వెనక్కి తేలేకుండా." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "ఈ వాడుకరిని తొలగించు" @@ -1145,15 +1183,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "భద్రపరచు" @@ -1281,31 +1317,43 @@ msgstr "మారుపేర్లని సృష్టించలేకప msgid "Options saved." msgstr "ఎంపికలు భద్రమయ్యాయి." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "ఈమెయిల్ అమరికలు" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "%%site.name%% నుండి మీకు ఎలా మెయిల్ వస్తూంతో సంభాళించుకోండి." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "చిరునామా" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "ఈమెయిలు చిరునామా" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిలు చిరునామా." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "తొలగించు" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1313,148 +1361,196 @@ msgstr "" "ఈ చిరునామా నిర్ధారణకై వేచివున్నాం. తదుపరి సూచనలతో ఉన్న సందేశానికై మీ ఇన్‌బాక్స్‌లో (స్పామ్ బాక్సులో కూడా!) " "చూడండి." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "రద్దుచేయి" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "ఈమెయిలు చిరునామా" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "చేర్చు" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "కొత్తది" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "అభిరుచులు" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "నేను ఈమెయిలు ద్వారా నోటీసులు పంపాలనుకుంటున్నాను." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "ఈమెయిలు చిరునామా లేదు." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "ఆ IM చిరునామా సరైనది కాదు." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "నిర్ధారణ రద్దయింది." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "అది మీ ఈమెయిలు చిరునామా కాదు." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "ఆ చిరునామాని తొలగించాం." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1640,15 +1736,17 @@ msgstr "" "నిజంగానే వాడుకరి \"%1$s\"ని \"%2$s\" గుంపు నుండి నిరోధించాలనుకుంటున్నారా? వారిని గుంపు నుండి " "తొలగిస్తాం, ఇక భవిష్యత్తులో వారు గుంపులో ప్రచురించలేరు, మరియు గుంపుకి చందాచేరలేరు." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "ఈ వాడుకరిని ఈ గుంపు నుండి నిరోధించకు" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1827,90 +1925,148 @@ msgstr "వాడుకరిని గుంపు నుండి నిరో msgid "Error removing the block." msgstr "నిరోధాన్ని తొలగించడంలో పొరపాటు." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "IM అమరికలు" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "IM అందుబాటులో లేదు." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IM చిరునామా" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, 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 "IM చిరునామా" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "అభిరుచులు" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "అభిరుచులు భద్రమయ్యాయి." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Jabber ID లేదు." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "సరైన Jabber ఐడీ కాదు" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, 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 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "ఆ IM చిరునామా సరైనది కాదు." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "నిర్ధారణ రద్దయింది." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "ఇది మీ Jabber ID కాదు" +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "ఆ చిరునామాని తొలగించాం." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1951,7 +2107,9 @@ msgstr "కొత్త వాడుకరులని ఆహ్వానిం msgid "You are already subscribed to these users:" msgstr "మీరు ఇప్పటికే ఈ వాడుకరులకు చందాచేరి ఉన్నారు:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2045,7 +2203,9 @@ msgstr "గుంపుల్లో చేరడానికి మీరు ప msgid "No nickname or ID." msgstr "పేరు లేదు." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s %2$s గుంపులో చేరారు" @@ -2054,11 +2214,13 @@ msgstr "%1$s %2$s గుంపులో చేరారు" msgid "You must be logged in to leave a group." msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "మీరు ఆ గుంపులో సభ్యులు కాదు." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు" @@ -2168,12 +2330,12 @@ msgstr "కొత్త గుంపుని సృష్టిండాని msgid "New message" msgstr "కొత్త సందేశం" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "ఈ వాడుకరికి మీరు సందేశాన్ని పంపించలేరు." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "విషయం లేదు!" @@ -2181,7 +2343,7 @@ msgstr "విషయం లేదు!" msgid "No recipient specified." msgstr "" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "మీకు మీరే సందేశాన్ని పంపుకోకండి; దాని బదులు మీలో మీరే మెల్లగా చెప్పుకోండి." @@ -2439,7 +2601,7 @@ msgid "6 or more characters" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "నిర్థారించు" @@ -3785,97 +3947,158 @@ msgstr "సైటు-వారీ నోటీసు పాఠ్యం (255 అ msgid "Save site notice" msgstr "సైటు గమనికని భద్రపరచు" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "SMS అమరికలు" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM చిరునామా" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "ఈ ఫోను నంబరు యొక్క నిర్ధారణకై వేచివుంది." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "నిర్ధారణ సంకేతం" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "నిర్థారించు" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "అభిరుచులు" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "అభిరుచులు భద్రమయ్యాయి." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "ఫోను నెంబరు లేదు." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "ఇది ఇప్పటికే మీ ఫోను నెంబరు." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "ఆ ఫోను నంబరు ఇప్పటికే వేరే వాడుకరికి చెందినది." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy 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 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "అది తప్పుడు నిర్ధారణ సంఖ్య." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "నిర్ధారణ రద్దయింది." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "అది మీ ఫోను నంబర్ కాదు." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "ఆ చిరునామాని తొలగించాం." + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -5052,10 +5275,8 @@ msgstr "చదవడం-వ్రాయడం" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "రద్దుచేయి" @@ -5135,35 +5356,41 @@ msgstr "ఆదేశం విఫలమైంది" msgid "Notice with that id does not exist" msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 #, fuzzy msgid "User has no last notice" msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "క్షమించండి, ఈ ఆదేశం ఇంకా అమలుపరచబడలేదు." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "%sకి స్పందనలు" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5174,197 +5401,201 @@ msgstr "" "చందాదార్లు: %2$s\n" "నోటీసులు: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు" -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "వాడుకరి %sని %s గుంపులో చేర్చలేకపోయాం" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" +msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%s %s గుంపులో చేరారు" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "పూర్తిపేరు: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "ప్రాంతం: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "హోంపేజీ: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "గురించి: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "%sకి నేరు సందేశాన్ని పంపించాం" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "మీ నోటిసుని మీరే పునరావృతించలేరు" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "ఇప్పటికే ఈ నోటీసుని పునరావృతించారు" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "సందేశాలు" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "%sకి స్పందనలు" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "ఏవరికి చందా చేరాలనుకుంటున్నారో ఆ వాడుకరి పేరు తెలియజేయండి" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "%sకి చందా చేరారు" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "ఎవరి నుండి చందా విరమించాలనుకుంటున్నారో ఆ వాడుకరి పేరు తెలియజేయండి" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "%s నుండి చందా విరమించారు" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "ఈ లంకెని ఒకే సారి ఉపయోగించగలరు, మరియు అది పనిచేసేది 2 నిమిషాలు మాత్రమే: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "%s నుండి చందా విరమించారు" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "మీరు ఎవరికీ చందాచేరలేదు." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "%sకి స్పందనలు" msgstr[1] "%sకి స్పందనలు" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "మీకు చందాదార్లు ఎవరూ లేరు." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "%sకి స్పందనలు" msgstr[1] "%sకి స్పందనలు" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "మీరు ఏ గుంపులోనూ సభ్యులు కాదు." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6227,6 +6458,10 @@ msgstr "అటువంటి పత్రమేమీ లేదు." msgid "Repeat this notice?" msgstr "ఈ నోటీసుని పునరావృతించాలా?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "అవును" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "ఈ నోటీసుని పునరావృతించు" @@ -6418,47 +6653,57 @@ msgctxt "role" msgid "Moderator" msgstr "సమన్వయకర్త" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "%d నిమిషాల క్రితం" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "%d గంటల క్రితం" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "%d రోజుల క్రితం" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "ఓ నెల క్రితం" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "%d నెలల క్రితం" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index d52d304de9..e5b1c00fff 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:26+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:52+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -78,8 +78,13 @@ msgstr "Böyle bir kullanıcı yok." msgid "Save access settings" msgstr "Ayarlar" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -111,7 +116,7 @@ msgstr "Böyle bir durum mesajı yok." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Böyle bir kullanıcı yok." @@ -348,7 +353,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "Bu zaten sizin Jabber ID'niz." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "" @@ -472,7 +477,7 @@ msgstr "İstek bulunamadı!" msgid "You are already a member of that group." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -525,17 +530,17 @@ msgid "Invalid token." msgstr "Geçersiz büyüklük." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -569,12 +574,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Beklenmeğen form girdisi." @@ -840,29 +848,45 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" -msgstr "" +msgstr "Durum mesajları" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Böyle bir kullanıcı yok." -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +msgctxt "BUTTON" msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -875,8 +899,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 #, fuzzy msgid "No such group." msgstr "Böyle bir durum mesajı yok." @@ -938,16 +962,24 @@ msgstr "Tanınmayan adres türü %s" msgid "That address has already been confirmed." msgstr "O adres daha önce onaylanmış." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Kullanıcı güncellenemedi." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Eposta onayı silinemedi." @@ -1005,12 +1037,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Böyle bir durum mesajı yok." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" @@ -1044,12 +1078,14 @@ msgstr "" msgid "Are you sure you want to delete this notice?" msgstr "" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "Böyle bir durum mesajı yok." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1073,7 +1109,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Böyle bir kullanıcı yok." @@ -1195,15 +1232,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Kaydet" @@ -1340,180 +1375,239 @@ msgstr "Avatar bilgisi kaydedilemedi" msgid "Options saved." msgstr "Ayarlar kaydedildi." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Profil ayarları" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Adres" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Eposta adresi onayı" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Kaldır" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "İptal et" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "Eposta adresi onayı" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Ekle" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +msgctxt "BUTTON" msgid "New" msgstr "" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Tercihler" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Tercihler kaydedildi." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Onay kodu eklenemedi." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "İptal etmek için beklenen onay yok." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Yanlış IM adresi." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Onaylama iptal edildi." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Bu adres kaldırılmıştı." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1711,17 +1805,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "Böyle bir kullanıcı yok." -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1902,12 +1998,16 @@ msgstr "Kullanıcının profili yok." msgid "Error removing the block." msgstr "Kullanıcıyı kaydetmede hata oluştu." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "IM Ayarları" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1916,16 +2016,26 @@ msgstr "" "Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " "ayarlarinizi aşağıda yapın." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "IM adresi" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Onaylanmış Jabber/Gtalk adresi." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1934,12 +2044,9 @@ msgstr "" "Bu adresten onay bekleniyor. Jabber/Google Talk hesabınızı ayrıntılı bilgi " "içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "IM adresi" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1948,44 +2055,66 @@ msgstr "" "Jabber veya Gtalk adresi: \"KullaniciAdi@example.org\" gibi. Öncelikle %s, " "IM istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Tercihler" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Tercihler kaydedildi." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "JabberID yok." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Jabber işlemlerinde bir hata oluştu." -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Geçersiz bir Jabber ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Bu zaten sizin Jabber ID'niz." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID başka bir kullanıcıya ait." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1994,10 +2123,35 @@ msgstr "" "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " "mesaj yollanabilmesi için onaylamanız gerekmektedir." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Yanlış IM adresi." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Eposta onayı silinemedi." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Onaylama iptal edildi." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Bu sizin Jabber ID'niz değil." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Bu adres kaldırılmıştı." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2038,7 +2192,9 @@ msgstr "" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2133,7 +2289,9 @@ msgstr "" msgid "No nickname or ID." msgstr "Takma ad yok" -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2142,12 +2300,14 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 #, fuzzy msgid "You are not a member of that group." msgstr "Bize o profili yollamadınız" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " @@ -2262,12 +2422,12 @@ msgstr "" msgid "New message" msgstr "" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "İçerik yok!" @@ -2275,7 +2435,7 @@ msgstr "İçerik yok!" msgid "No recipient specified." msgstr "" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2536,7 +2696,7 @@ msgid "6 or more characters" msgstr "6 veya daha fazla karakter" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Onayla" @@ -3893,98 +4053,159 @@ msgstr "" msgid "Save site notice" msgstr "Yeni durum mesajı" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "IM Ayarları" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM adresi" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Onayla" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Tercihler" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Tercihler kaydedildi." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy 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 "O onay kodu sizin için değil!" -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Onaylama iptal edildi." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Bu adres kaldırılmıştı." + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -5208,10 +5429,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "İptal et" @@ -5288,35 +5507,41 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 #, fuzzy msgid "User has no last notice" msgstr "Kullanıcının profili yok." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Kullanıcı güncellenemedi." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Kullanıcı güncellenemedi." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "%s için cevaplar" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5324,201 +5549,205 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 #, fuzzy msgid "You are already a member of that group" msgstr "Zaten giriş yapmış durumdasıznız!" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "%1$s'in %2$s'deki durum mesajları " - -#: lib/command.php:373 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "OpenID formu yaratılamadı: %s" -#: lib/command.php:378 -#, fuzzy, php-format -msgid "%s left group %s" -msgstr "%1$s'in %2$s'deki durum mesajları " - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, fuzzy, php-format msgid "Fullname: %s" msgstr "Tam İsim" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Zaten giriş yapmış durumdasıznız!" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Durum mesajları" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "%s için cevaplar" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Bize o profili yollamadınız" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Aboneliği sonlandır" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Bize o profili yollamadınız" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Bize o profili yollamadınız" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Uzaktan abonelik" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Uzaktan abonelik" -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "Bize o profili yollamadınız" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bize o profili yollamadınız" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6378,6 +6607,10 @@ msgstr "Böyle bir belge yok." msgid "Repeat this notice?" msgstr "Böyle bir durum mesajı yok." +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6575,47 +6808,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "birkaç saniye önce" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "yaklaşık %d dakika önce" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "yaklaşık %d saat önce" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "yaklaşık bir gün önce" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "yaklaşık %d gün önce" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "yaklaşık bir ay önce" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "yaklaşık %d ay önce" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 6df5416970..f9b74e02d5 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:29+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:55+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -77,8 +77,13 @@ msgstr "Закрито" msgid "Save access settings" msgstr "Зберегти параметри доступу" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -108,7 +113,7 @@ msgstr "Немає такої сторінки." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Такого користувача немає." @@ -347,7 +352,7 @@ msgstr "Жодних статусів з таким ID." msgid "This status is already a favorite." msgstr "Цей статус вже є обраним." -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Не можна позначити як обране." @@ -465,7 +470,7 @@ msgstr "Групу не знайдено." msgid "You are already a member of that group." msgstr "Ви вже є учасником цієї групи." -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "Адмін цієї групи заблокував Вашу присутність в ній." @@ -516,17 +521,17 @@ msgid "Invalid token." msgstr "Невірний токен." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -560,12 +565,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "Токен запиту %s було скасовано і відхилено." +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Несподіване представлення форми." @@ -826,27 +834,44 @@ msgstr "" "відписано від Вас, він не зможе підписитасть до Вас у майбутньому і Ви " "більше не отримуватимете жодних дописів від нього." -#: actions/block.php:143 actions/deleteapplication.php:153 -#: actions/deletenotice.php:145 actions/deleteuser.php:150 -#: actions/groupblock.php:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Ні" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Не блокувати цього користувача" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Так" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 msgid "Block this user" msgstr "Блокувати користувача" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "Збереження інформації про блокування завершилось невдачею." @@ -859,8 +884,8 @@ msgstr "Збереження інформації про блокування з #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "Такої групи немає." @@ -919,16 +944,24 @@ msgstr "Невизначений тип адреси %s." msgid "That address has already been confirmed." msgstr "Цю адресу вже було підтверджено." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Не вдалося оновити користувача." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Не вдалося видалити підтвердження поштової адреси." @@ -983,11 +1016,13 @@ msgstr "" "інформацію стосовно нього, включно із даними про під’єднаних до цього " "додатку користувачів." -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 msgid "Do not delete this application" msgstr "Не видаляти додаток" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 msgid "Delete this application" msgstr "Видалити додаток" @@ -1020,11 +1055,13 @@ msgstr "Видалити допис" msgid "Are you sure you want to delete this notice?" msgstr "Ви впевненні, що бажаєте видалити цей допис?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 msgid "Do not delete this notice" msgstr "Не видаляти цей допис" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "Видалити допис" @@ -1048,7 +1085,8 @@ msgstr "" "Впевнені, що бажаєте видалити цього користувача? Усі дані буде знищено без " "можливості відновлення." -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 msgid "Delete this user" msgstr "Видалити цього користувача" @@ -1161,15 +1199,13 @@ msgid "Reset back to default" msgstr "Повернутись до початкових налаштувань" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Зберегти" @@ -1295,31 +1331,43 @@ msgstr "Неможна призначити додаткові імена." msgid "Options saved." msgstr "Опції збережено." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 msgid "Email settings" msgstr "Налаштування пошти" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Зазначте, як саме Ви бажаєте отримувати листи з %%site.name%%." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Адреса" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Електронна адреса" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Поточна підтверджена поштова адреса." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Видалити" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1327,106 +1375,141 @@ msgstr "" "Очікування підтвердження цієї адреси. Перевірте вхідну пошту (і теку зі " "спамом також!), там має бути повідомлення з подальшими інструкціями." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Скасувати" -#: actions/emailsettings.php:121 -msgid "Email address" -msgstr "Електронна адреса" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "Електронна адреса, на зразок \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Додати" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "Вхідна пошта" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Надсилайте дописи на цю адресу і їх буде опубліковано на сайті." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Створити нову адресу для надсилання повідомлень; видалити стару." -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Нове" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Преференції" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Поівдомляти мене поштою про нові підписки." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "Надсилати мені листа, коли хтось додає мій допис до списку обраних." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Надсилати мені листа, коли хтось має приватне повідомлення для мене." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Надсилати мені листа, коли на мій допис з’являється \"@-відповідь\"." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "Дозволити друзям «розштовхати» мене, надіславши мені листа." -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Я хочу надсилати дописи поштою." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Позначати міткою MicroID мою електронну адресу." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "Преференції збережно." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "Преференції дизайну збережно." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Немає електронної адреси." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "Не можна полагодити цю поштову адресу" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Це недійсна електронна адреса." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "Це і є Вашою адресою." -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "Ця електронна адреса належить іншому користувачу." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Не вдалося додати код підтвердження." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1435,43 +1518,56 @@ msgstr "" "Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та " "подальші інструкції." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Не очікується підтвердження для скасування." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Це помилкова адреса IM." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Підтвердження скасовано." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "Це не є Вашою адресою." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Адресу було видалено." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Немає адреси для вхідної пошти." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Не вдалося оновити запис користувача." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Адресу вхідної пошти видалено." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Нову адресу для вхідних повідомлень додано." @@ -1660,15 +1756,17 @@ msgstr "" "позбавлено членства в групі, він не зможе сюди писати, і не зможе вступити " "до групи знов." -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 msgid "Do not block this user from this group" msgstr "Не блокувати користувача в групі" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Блокувати користувача цієї групи" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "Виникла помилка при блокуванні користувача в цій групі." @@ -1852,11 +1950,15 @@ msgstr "Користувача не блоковано." msgid "Error removing the block." msgstr "Помилка при розблокуванні." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 msgid "IM settings" msgstr "Налаштування ІМ" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1865,15 +1967,24 @@ msgstr "" "Ви можете надсилати та отримувати дописи через Jabber/GTalk [службу миттєвих " "повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції нижче." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 msgid "IM is not available." msgstr "ІМ недоступний" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "ІМ-адреса" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Поточна підтверджена адреса Jabber/GTalk." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1883,11 +1994,9 @@ msgstr "" "туди має надійти повідомлення з подальшими інструкціями. (Ви додали %s до " "Вашого списку контактів?)" -#: actions/imsettings.php:124 -msgid "IM address" -msgstr "ІМ-адреса" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1897,45 +2006,67 @@ msgstr "" "переконайтеся, що додали %s до списку контактів в своєму IM-клієнті або в " "GTalk." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Преференції" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Повідомляти мене через Jabber/GTalk." -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Надсилати дописи на сайт, коли мій статус Jabber/GTalk змінюється." -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не " "підписаний." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Позначати міткою MicroID мою адресу Jabber/GTalk." -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Преференції збережно." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Немає Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Не можна полагодити цей Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Це недійсний Jabber ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Це і є Ваш Jabber ID." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID вже належить іншому користувачу." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1944,10 +2075,35 @@ msgstr "" "Код підтвердження був відправлений на адресу IM, яку Ви додали. Ви повинні " "затведити %s для відправлення вам повідомлень." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Це помилкова адреса IM." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Не вдалося видалити підтвердження поштової адреси." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Підтвердження скасовано." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Це не Ваш Jabber ID." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Адресу було видалено." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1989,7 +2145,9 @@ msgstr "Запросити нових користувачів" msgid "You are already subscribed to these users:" msgstr "Ви вже підписані до цих користувачів:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2114,7 +2272,9 @@ msgstr "Ви повинні спочатку увійти на сайт, аби msgid "No nickname or ID." msgstr "Немає імені або ІД." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s приєднався до групи %2$s" @@ -2123,11 +2283,13 @@ msgstr "%1$s приєднався до групи %2$s" msgid "You must be logged in to leave a group." msgstr "Ви повинні спочатку увійти на сайт, аби залишити групу." -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "Ви не є учасником цієї групи." -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, php-format msgid "%1$s left group %2$s" msgstr "%1$s залишив групу %2$s" @@ -2239,12 +2401,12 @@ msgstr "Скористайтесь цією формою для створенн msgid "New message" msgstr "Нове повідомлення" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "Ви не можете надіслати повідомлення цьому користувачеві." -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Немає змісту!" @@ -2252,7 +2414,7 @@ msgstr "Немає змісту!" msgid "No recipient specified." msgstr "Жодного отримувача не визначено." -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2511,7 +2673,7 @@ msgid "6 or more characters" msgstr "6 або більше знаків" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Підтвердити" @@ -3901,44 +4063,74 @@ msgstr "Текст повідомлення сайту (255 символів м msgid "Save site notice" msgstr "Зберегти повідомлення сайту" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 msgid "SMS settings" msgstr "Налаштування СМС" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Ви можете отримувати СМС через електронну пошту від %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 msgid "SMS is not available." msgstr "СМС недоступно." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "ІМ-адреса" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "Поточний підтверджений телефонний номер." -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "Очікування підтвердження телефонного номера." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "Код підтвердження" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Введіть код, який Ви отримали телефоном." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Підтвердити" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "Телефонний номер" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Преференції" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -3946,23 +4138,34 @@ msgstr "" "Повідомляти мене за допомогою СМС; Я розімію, що, можливо, понесу надмірні " "витрати від мого мобільного оператора." -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Преференції збережно." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Немає телефонного номера." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "Оператора не обрано." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "Це і є Ваш телефонний номер." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "Цей телефонний номер належить іншому користувачу." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 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." @@ -3970,23 +4173,42 @@ msgstr "" "Код підтвердження був відправлений на телефонний номер, який Ви додали. " "Перевірте вхідні повідомлення, там має бути код та подальші інструкції." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "Це помилковий код підтвердження." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Підтвердження скасовано." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Це не Ваш телефонний номер." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Телефонний номер" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "Мобільний оператор" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Оберіть оператора" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -3996,7 +4218,8 @@ msgstr "" "надсилання СМС через електронну пошту, але він тут не вказаний, напишіть нам " "і ми внесемо його до списку." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Код не введено" @@ -5192,10 +5415,8 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" "Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Скасувати" @@ -5271,34 +5492,40 @@ msgstr "Команду не виконано" msgid "Notice with that id does not exist" msgstr "Такого допису не існує" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "Користувач не має останнього допису" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "Не вдалося знайти користувача з іменем %s" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, php-format msgid "Could not find a local user with nickname %s" msgstr "Не вдалося знайти локального користувача з іменем %s" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "Даруйте, але виконання команди ще не завершено." -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Гадаємо, користі від «розштовхування» самого себе небагато, чи не так?!" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "Спробу «розштовхати» %s зараховано" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5309,57 +5536,55 @@ msgstr "" "Підписчики: %2$s\n" "Дописи: %3$s" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "Допис позначено як обраний." -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "Ви вже є учасником цієї групи." -#: lib/command.php:331 -#, php-format -msgid "Could not join user %s to group %s" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s" msgstr "Не вдалось долучити користувача %1$s до групи %2$s." -#: lib/command.php:336 -#, php-format -msgid "%s joined group %s" -msgstr "%1$s приєднався до групи %2$s" - -#: lib/command.php:373 -#, php-format -msgid "Could not remove user %s to group %s" +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 +#, fuzzy, php-format +msgid "Could not remove user %s from group %s" msgstr "Не вдалося видалити користувача %1$s з групи %2$s." -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%1$s залишив групу %2$s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "Повне ім’я: %s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "Розташування: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "Веб-сторінка: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "Про мене: %s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5368,142 +5593,149 @@ msgstr "" "%s — це віддалений профіль; Ви можете надсилати приватні повідомлення лише " "користувачам одного з вами сервісу." -#: lib/command.php:450 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Повідомлення надто довге — максимум %d знаків, а ви надсилаєте %d" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d" +msgstr "" +"Повідомлення надто довге — максимум %1$d символів, а Ви надсилаєте %2$d." -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "Пряме повідомлення для %s надіслано." -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "Помилка при відправці прямого повідомлення." -#: lib/command.php:490 +#: lib/command.php:514 msgid "Cannot repeat your own notice" msgstr "Не можу повторити Ваш власний допис" -#: lib/command.php:495 +#: lib/command.php:519 msgid "Already repeated that notice" msgstr "Цей допис вже повторили" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, php-format msgid "Notice from %s repeated" msgstr "Допис %s повторили" -#: lib/command.php:505 +#: lib/command.php:531 msgid "Error repeating notice." msgstr "Помилка при повторенні допису." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Допис надто довгий — максимум %d знаків, а ви надсилаєте %d" -#: lib/command.php:545 +#: lib/command.php:571 #, php-format msgid "Reply to %s sent" msgstr "Відповідь до %s надіслано" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "Проблема при збереженні допису." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "Зазначте ім’я користувача, до якого бажаєте підписатись" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "Не можу підписатись до профілю OMB за командою." -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "Підписано до %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "Зазначте ім’я користувача, від якого бажаєте відписатись" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "Відписано від %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "Виконання команди ще не завершено." -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "Сповіщення вимкнуто." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "Не можна вимкнути сповіщення." -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "Сповіщення увімкнуто." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "Не можна увімкнути сповіщення." -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "Команду входу відключено" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" "Це посилання можна використати лише раз, воно дійсне протягом 2 хвилин: %s" -#: lib/command.php:735 +#: lib/command.php:761 #, php-format msgid "Unsubscribed %s" msgstr "Відписано %s" -#: lib/command.php:752 +#: lib/command.php:778 msgid "You are not subscribed to anyone." msgstr "Ви не маєте жодних підписок." -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ви підписані до цієї особи:" msgstr[1] "Ви підписані до цих людей:" msgstr[2] "Ви підписані до цих людей:" -#: lib/command.php:774 +#: lib/command.php:800 msgid "No one is subscribed to you." msgstr "До Вас ніхто не підписаний." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Ця особа є підписаною до Вас:" msgstr[1] "Ці люди підписані до Вас:" msgstr[2] "Ці люди підписані до Вас:" -#: lib/command.php:796 +#: lib/command.php:822 msgid "You are not a member of any groups." msgstr "Ви не є учасником жодної групи." -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Ви є учасником групи:" msgstr[1] "Ви є учасником таких груп:" msgstr[2] "Ви є учасником таких груп:" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6469,6 +6701,10 @@ msgstr "Немає аргументів return-to." msgid "Repeat this notice?" msgstr "Повторити цей допис?" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Так" + #: lib/repeatform.php:132 msgid "Repeat this notice" msgstr "Повторити цей допис" @@ -6655,47 +6891,57 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "мить тому" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "хвилину тому" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "близько %d хвилин тому" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "годину тому" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "близько %d годин тому" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "день тому" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "близько %d днів тому" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "місяць тому" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "близько %d місяців тому" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "рік тому" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index a36036300b..8418945036 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:32+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:44:58+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -77,8 +77,13 @@ msgstr "Ban user" msgid "Save access settings" msgstr "Thay đổi hình đại diện" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -110,7 +115,7 @@ msgstr "Không có tin nhắn nào." #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Không có user nào." @@ -349,7 +354,7 @@ msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." msgid "This status is already a favorite." msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "Không thể tạo favorite." @@ -474,7 +479,7 @@ msgstr "Phương thức API không tìm thấy!" msgid "You are already a member of that group." msgstr "Bạn đã theo những người này:" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -527,17 +532,17 @@ msgid "Invalid token." msgstr "Kích thước không hợp lệ." #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -571,12 +576,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "Bất ngờ gửi mẫu thông tin. " @@ -844,29 +852,46 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "Không" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Bỏ chặn người dùng này" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "Có" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Ban user" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -879,8 +904,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 #, fuzzy msgid "No such group." msgstr "Không có tin nhắn nào." @@ -941,16 +966,24 @@ msgstr "Không nhận dạng kiểu địa chỉ %s" msgid "That address has already been confirmed." msgstr "Địa chỉ đó đã được xác nhận rồi." -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "Không thể cập nhật thành viên." -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Không thể xóa email xác nhận." @@ -1009,12 +1042,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "Không thể xóa tin nhắn này." -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "Xóa tin nhắn" @@ -1049,12 +1084,14 @@ msgstr "Xóa tin nhắn" msgid "Are you sure you want to delete this notice?" msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "Không thể xóa tin nhắn này." -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 #, fuzzy msgid "Delete this notice" msgstr "Xóa tin nhắn" @@ -1080,7 +1117,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "Xóa tin nhắn" @@ -1206,15 +1244,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Lưu" @@ -1358,32 +1394,45 @@ msgstr "Không thể tạo favorite." msgid "Options saved." msgstr "Đã lưu các điều chỉnh." -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "Thiết lập địa chỉ email" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Bạn nhận email từ %%site.name%% như thế nào." -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "Địa chỉ" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Địa chỉ email" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "Đã xác nhận địa chỉ này." -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "Xóa" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1391,114 +1440,148 @@ msgstr "" "Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến (hoặc thư rác) " "để nhận tin nhắn và lời hướng dẫn." -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "Hủy" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "Địa chỉ email" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 #, fuzzy msgid "Email address, like \"UserName@example.org\"" msgstr "Địa chỉ email GTalk, Ví dụ: \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Thêm" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Gửi email đến địa chỉ này để đưa tin nhắn mới lên." -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Tạo một địa chỉ email mới để đưa tin nhắn lên; và xóa " -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "Mới" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "Tính năng" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "Hãy gửi email cho tôi thông báo về các đăng nhận mới." -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa " "thích của họ." -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "Tôi muốn đưa tin nhắn lên bằng email." -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "Xuất bản một MicroID đến địa chỉ email của tôi." -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." msgstr "Các tính năng đã được lưu." -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "Không có địa chỉ email." -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 #, fuzzy 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 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Địa chỉ email không hợp lệ." -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 #, fuzzy msgid "That is already your email address." msgstr "Bạn đã dùng địa chỉ email này rồi" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 #, fuzzy msgid "That email address already belongs to another user." msgstr "Địa chỉ email GTalk này đã có người khác sử dụng rồi." -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Không thể chèn mã xác nhận." -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1506,47 +1589,60 @@ msgstr "" "Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " "làm theo hướng dẫn." -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Sự xác nhận chưa được hủy bỏ." -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "Sai IM." -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "Sự xác nhận đã bị hủy bỏ." -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 #, fuzzy msgid "That is not your email address." msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "Đã xóa địa chỉ." -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 #, fuzzy msgid "No incoming email address." msgstr "Địa chỉ email không hợp lệ." -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 #, fuzzy msgid "Couldn't update user record." msgstr "Không thể cập nhật thành viên." -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 #, fuzzy msgid "Incoming email address removed." msgstr "Địa chỉ email hoặc mật khẩu không đúng." -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 #, fuzzy msgid "New incoming email address added." msgstr "Đã xác nhận địa chỉ này." @@ -1750,17 +1846,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "Ban user" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1946,12 +2044,16 @@ msgstr "Người dùng không có thông tin." msgid "Error removing the block." msgstr "Lỗi xảy ra khi lưu thành viên." -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "Cấu hình IM" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1960,16 +2062,26 @@ msgstr "" "Bạn có thể gửi và nhận những tin nhắn qua Jabber hoặc GTalk [tin nhắn nhanh]" "(%%doc.im%%). Định dạng địa chỉ của bạn và các thiết lập sau." -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "IM" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Địa chỉ Jabber/GTalk vừa được xác nhận." -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1978,12 +2090,9 @@ msgstr "" "Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra tài khoản Jabber/GTalk để " "nhận tin nhắn và lời hướng dẫn. (Bạn đã thêm %s vào danh sách bạn thân chưa?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "IM" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1992,45 +2101,67 @@ msgstr "" "Địa chỉ Jabber hoặc GTalk, giống như \"UserName@example.org\". Đầu tiên, hãy " "tạo thêm %s vào danh sách buddy trên IM client hoặc GTalk của bạn." -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "Tính năng" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Gửi một tin nhắn khi trạng thái của tôi trên Jabber hay GTalk " -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Gửi những tin nhắn trả lời của tôi từ những người mà tôi không theo qua " "Jabber/GTalk." -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Gửi MicroID đến địa chỉ Jabber/GTalk của tôi. " -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Các tính năng đã được lưu." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "Không có Jabber ID." -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "Không thể bình thường hóa Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "Jabber ID không hợp lệ" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "Tài khoản đó đã là tên tài khoản Jabber của bạn rồi." -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID này đã thuộc về người khác rồi." -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2039,10 +2170,35 @@ msgstr "" "Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi " "tin nhắn đến bạn." -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "Sai IM." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Không thể xóa email xác nhận." + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "Sự xác nhận đã bị hủy bỏ." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "Đây không phải Jabber ID của bạn." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "Đã xóa địa chỉ." + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -2083,7 +2239,9 @@ msgstr "Gửi thư mời đến những người chưa có tài khoản" msgid "You are already subscribed to these users:" msgstr "Bạn đã theo những người này:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, fuzzy, php-format msgid "%1$s (%2$s)" msgstr "%s (%s)" @@ -2212,7 +2370,9 @@ msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những msgid "No nickname or ID." msgstr "Không có biệt hiệu." -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s và nhóm" @@ -2222,12 +2382,14 @@ msgstr "%s và nhóm" msgid "You must be logged in to leave a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 #, fuzzy msgid "You are not a member of that group." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s và nhóm" @@ -2344,13 +2506,13 @@ msgstr "" msgid "New message" msgstr "Tin mới nhất" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 #, fuzzy msgid "You can't send a message to this user." msgstr "Bạn đã theo những người này:" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "Không có nội dung!" @@ -2358,7 +2520,7 @@ msgstr "Không có nội dung!" msgid "No recipient specified." msgstr "" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2627,7 +2789,7 @@ msgid "6 or more characters" msgstr "Nhiều hơn 6 ký tự" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "Xác nhận" @@ -4017,49 +4179,79 @@ msgstr "" msgid "Save site notice" msgstr "Thông báo mới" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "Thiết lập SMS" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Bạn có thể nhận tin nhắn SMS qua email từ %%site.name%%." -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "SMS xác nhận ngay - đã cho phép gửi qua điện thoại. " -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 #, fuzzy msgid "Awaiting confirmation on this phone number." msgstr "Đó không phải là số điện thoại của bạn." -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 #, fuzzy msgid "Confirmation code" msgstr "Không có mã số xác nhận." -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "Nhập mã mà bạn nhận được trên điện thoại của bạn." -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Xác nhận" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "Số điện thoại để nhắn SMS " -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Số điện thoại, không cho phép nhập dấu chấm và ký tự " -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "Tính năng" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -4067,26 +4259,37 @@ msgstr "" "Hãy gửi thông báo đến tôi qua SMS; Tôi biết là bạn đang phải trả giá cao " "cho dịch vụ của chúng tôi. " -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Các tính năng đã được lưu." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "Không có số điện thoại." -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 #, fuzzy msgid "No carrier selected." msgstr "Bạn chưa chọn hình để đưa lên." -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 #, fuzzy msgid "That is already your phone number." msgstr "Đó không phải là số điện thoại của bạn." -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 #, fuzzy msgid "That phone number already belongs to another user." msgstr "Địa chỉ email Yahoo này đã có người khác sử dụng rồi." -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -4095,25 +4298,44 @@ msgstr "" "Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " "làm theo hướng dẫn." -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 #, fuzzy msgid "That is the wrong confirmation number." msgstr "Đó không phải là số điện thoại của bạn." -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "Sự xác nhận đã bị hủy bỏ." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "Đó không phải là số điện thoại của bạn." -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Số điện thoại để nhắn SMS " + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 #, fuzzy msgid "Mobile carrier" msgstr "Chọn nhà cung cấp Mobile" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "Chọn nhà cung cấp Mobile" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4123,7 +4345,8 @@ msgstr "" "dịch vụ điện thoại nào cho phép nhận SMS qua email mà chưa có trong danh " "sách này, vui lòng gửi mail cho chúng tôi đến địa chỉ %s." -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "Không có mã nào được nhập" @@ -5365,10 +5588,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "Hủy" @@ -5448,35 +5669,41 @@ msgstr " và bạn bè" msgid "Notice with that id does not exist" msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 #, fuzzy msgid "User has no last notice" msgstr "Người dùng không có thông tin." -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Tin đã gửi" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5484,205 +5711,209 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 #, fuzzy msgid "Notice marked as fave." msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: lib/command.php:317 +#: lib/command.php:323 #, fuzzy msgid "You are already a member of that group" msgstr "Bạn đã theo những người này:" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "%s và nhóm" - -#: lib/command.php:373 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: lib/command.php:378 -#, fuzzy, php-format -msgid "%s left group %s" -msgstr "%s và nhóm" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, fuzzy, php-format msgid "Fullname: %s" msgstr "Tên đầy đủ" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, fuzzy, php-format msgid "Location: %s" msgstr "Thành phố: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, fuzzy, php-format msgid "Homepage: %s" msgstr "Trang chủ hoặc Blog: %s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, fuzzy, php-format msgid "About: %s" msgstr "Giới thiệu" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, fuzzy, php-format msgid "Direct message to %s sent" msgstr "Tin nhắn riêng" -#: lib/command.php:470 +#: lib/command.php:494 #, fuzzy msgid "Error sending direct message." msgstr "Thư bạn đã gửi" -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản." -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "Xóa tin nhắn" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "Tin đã gửi" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "Trả lời tin nhắn này" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:608 +#: lib/command.php:634 #, fuzzy, php-format msgid "Subscribed to %s" msgstr "Theo nhóm này" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, fuzzy, php-format msgid "Unsubscribed from %s" msgstr "Hết theo" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 #, fuzzy msgid "Notification off." msgstr "Không có mã số xác nhận." -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 #, fuzzy msgid "Notification on." msgstr "Không có mã số xác nhận." -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "Hết theo" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Bạn đã theo những người này:" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "Không thể tạo favorite." -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Không thể tạo favorite." -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6610,6 +6841,10 @@ msgstr "Không có tài liệu nào." msgid "Repeat this notice?" msgstr "Trả lời tin nhắn này" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Có" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6816,47 +7051,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "vài giây trước" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "1 phút trước" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "%d phút trước" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "1 giờ trước" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "%d giờ trước" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "1 ngày trước" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "%d ngày trước" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "1 tháng trước" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "%d tháng trước" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 0d374039a1..d9b20ac14b 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:35+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:45:01+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 (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -80,8 +80,13 @@ msgstr "阻止" msgid "Save access settings" msgstr "头像设置" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -113,7 +118,7 @@ msgstr "没有该页面" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "没有这个用户。" @@ -350,7 +355,7 @@ msgstr "没有找到此ID的信息。" msgid "This status is already a favorite." msgstr "已收藏此通告!" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "无法创建收藏。" @@ -473,7 +478,7 @@ msgstr "API 方法未实现!" msgid "You are already a member of that group." msgstr "您已经是该组成员" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -526,17 +531,17 @@ msgid "Invalid token." msgstr "大小不正确。" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -570,12 +575,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "未预料的表单提交。" @@ -840,29 +848,46 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" msgid "No" msgstr "否" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "取消阻止次用户" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" msgid "Yes" msgstr "是" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "阻止该用户" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "保存阻止信息失败。" @@ -875,8 +900,8 @@ msgstr "保存阻止信息失败。" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 msgid "No such group." msgstr "没有这个组。" @@ -938,16 +963,24 @@ msgstr "不可识别的地址类型 %s" msgid "That address has already been confirmed." msgstr "此地址已被确认。" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "无法更新用户。" -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "无法删除电子邮件确认。" @@ -1006,12 +1039,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "无法删除通告。" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "删除通告" @@ -1046,12 +1081,14 @@ msgstr "删除通告" msgid "Are you sure you want to delete this notice?" msgstr "确定要删除这条消息吗?" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "无法删除通告。" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 #, fuzzy msgid "Delete this notice" msgstr "删除通告" @@ -1077,7 +1114,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "删除通告" @@ -1199,15 +1237,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1346,32 +1382,45 @@ msgstr "无法创建收藏。" msgid "Options saved." msgstr "选项已保存。" -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "电子邮件设置" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "设置 %%site.name%% 发送的邮件。" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "地址" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "电子邮件地址" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "已确认的电子邮件。" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +#, fuzzy +msgctxt "BUTTON" msgid "Remove" msgstr "移除" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -1379,108 +1428,142 @@ msgstr "" "等待确认此地址。请查看您的收件箱(和垃圾箱)是否收到了邮件,其中包含了进一步的" "指示。" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "取消" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "电子邮件地址" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "电子邮件,类似 \"UserName@example.org\"" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "添加" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "发布用的电子邮件" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "向这个电子邮件发信以发布新的通告。" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "生成新的电子邮件地址用于发布信息;取消旧的。" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" msgid "New" msgstr "新建" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" msgstr "首选项" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "如果有新订阅,通过电子邮件告诉我。" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "如果有人收藏我的通告,发邮件通知我。" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "如果收到私人信息,发邮件通知我。" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "如果收到私人信息,发邮件通知我。" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "允许朋友们呼叫并给我发送邮件。" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "我希望通过邮件发布信息。" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "公开电子邮件的 MicroID。" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "首选项已保存。" +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +#, fuzzy +msgid "Email preferences saved." +msgstr "同步选项已保存。" -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "没有电子邮件地址。" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "无法识别此电子邮件" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "不是有效的电子邮件。" -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "您已登记此电子邮件。" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "此电子邮件属于其他用户。" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "无法插入验证码。" -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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." @@ -1488,43 +1571,56 @@ msgstr "" "验证码已被发送到您新增的电子邮件。请检查收件箱(和垃圾箱),找到验证码并按要求" "使用它。" -#: actions/emailsettings.php:379 actions/imsettings.php:351 -#: actions/smssettings.php:370 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "没有可以取消的确认。" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." msgstr "即时通讯帐号错误。" -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "已取消确认。" -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "这是他人的电子邮件。" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." msgstr "地址被移除。" -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "没有发布用的电子邮件地址。" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "无法更新用户记录。" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "发布用的电子邮件被移除。" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "已添加新的发布用的电子邮件地址。" @@ -1729,17 +1825,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "该组成员列表。" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "该组成员列表。" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1922,12 +2020,16 @@ msgstr "用户没有个人信息。" msgid "Error removing the block." msgstr "保存用户时出错。" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "IM 设置" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -1936,16 +2038,26 @@ msgstr "" "您可以通过Jabber/GTalk [即时通讯工具](%%doc.im%%)发送和接受通告。在这里配置它" "们。" -#: actions/imsettings.php:89 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "这个页面不提供您想要的媒体类型" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "IM 帐号" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "已确认的Jabber/GTalk帐号。" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1954,12 +2066,9 @@ msgstr "" "正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。" "(你是否已经添加 %s为你的好友?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "IM 帐号" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1968,53 +2077,100 @@ msgstr "" "Jabber 或 GTalk 帐号,类似\"UserName@example.org\"。首先,必须在即时聊天工具" "或GTalk中将 %s 加为好友。" -#: actions/imsettings.php:143 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +#, fuzzy +msgid "IM preferences" +msgstr "首选项" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "通过Jabber/GTalk发送通告。" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "如果我尚未订阅的用户回我消息,使用Jabber/GTalk通知我。" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "公开Jabber/GTalk帐号的 MicroID。" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "首选项已保存。" + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "没有 Jabber ID。" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "无法识别此Jabber ID" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "不是有效的 Jabber ID" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "您已登记此Jabber帐号。" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID 属于另一用户。" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "即时通讯帐号错误。" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "无法删除电子邮件确认。" + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "已取消确认。" + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "这不是您的Jabber帐号。" +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +#, fuzzy +msgid "The IM address was removed." +msgstr "地址被移除。" + #: actions/inbox.php:59 #, fuzzy, php-format msgid "Inbox for %1$s - page %2$d" @@ -2055,7 +2211,9 @@ msgstr "邀请新用户" msgid "You are already subscribed to these users:" msgstr "您已订阅这些用户:" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2171,7 +2329,9 @@ msgstr "您必须登录才能加入组。" msgid "No nickname or ID." msgstr "没有昵称。" -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, fuzzy, php-format msgid "%1$s joined group %2$s" msgstr "%s 加入 %s 组" @@ -2181,12 +2341,14 @@ msgstr "%s 加入 %s 组" msgid "You must be logged in to leave a group." msgstr "您必须登录才能邀请其他人使用 %s" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 #, fuzzy msgid "You are not a member of that group." msgstr "您未告知此个人信息" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%s 离开群 %s" @@ -2299,12 +2461,12 @@ msgstr "使用此表格创建组。" msgid "New message" msgstr "新消息" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "无法向此用户发送消息。" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "没有内容!" @@ -2312,7 +2474,7 @@ msgstr "没有内容!" msgid "No recipient specified." msgstr "没有收件人。" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "不要向自己发送消息;跟自己悄悄说就得了。" @@ -2576,7 +2738,7 @@ msgid "6 or more characters" msgstr "6 个或更多字符" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "确认" @@ -3956,69 +4118,110 @@ msgstr "" msgid "Save site notice" msgstr "新通告" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "SMS短信设置" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "您可以通过 %%site.name%% 的电子邮件接收SMS短信。" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "这个页面不提供您想要的媒体类型" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM 帐号" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "已确认的可以发送SMS短消息的电话号码。" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "等待确认此电话号码。" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "确认码" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "输入手机收到的验证码。" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "确认" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 #, fuzzy msgid "SMS phone number" msgstr "SMS短信电话号码" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "电话号码,不带标点或空格,包含地区代码" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +#, fuzzy +msgid "SMS preferences" +msgstr "首选项" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "通过SMS短信将通告发给我;我了解这样也许会给我带来不菲的开支。" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "首选项已保存。" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "没有电话号码。" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "未选择运营商。" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "您已登记此电话号码。" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "这个电话号码属于另一个用户。" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " @@ -4027,24 +4230,43 @@ msgstr "" "验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求" "使用它。" -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "确认码错误。" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "已取消确认。" + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "这是他人的电话号码。" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS短信电话号码" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 #, fuzzy msgid "Mobile carrier" msgstr "选择运营商" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "选择运营商" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -4053,7 +4275,8 @@ msgstr "" "电话的服务商。如果您的服务商支持通过电子邮件发送SMS短信,而这里尚未列出,请联" "系 %s 以告知。" -#: actions/smssettings.php:498 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "没有输入验证码" @@ -5296,10 +5519,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "取消" @@ -5377,34 +5598,40 @@ msgstr "执行失败" msgid "Notice with that id does not exist" msgstr "没有找到此ID的信息。" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 msgid "User has no last notice" msgstr "用户没有通告。" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "无法更新已确认的电子邮件。" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "无法更新已确认的电子邮件。" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "对不起,这个命令还没有实现。" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, fuzzy, php-format msgid "Nudge sent to %s" msgstr "振铃呼叫发出。" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5412,200 +5639,204 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "通告被标记为收藏。" -#: lib/command.php:317 +#: lib/command.php:323 msgid "You are already a member of that group" msgstr "您已经是该组成员" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "无法把 %s 用户添加到 %s 组" -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "%s 加入 %s 组" - -#: lib/command.php:373 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "无法订阅用户:未找到。" -#: lib/command.php:378 -#, php-format -msgid "%s left group %s" -msgstr "%s 离开群 %s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, php-format msgid "Fullname: %s" msgstr "全名:%s" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "位置:%s" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "主页:%s" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "关于:%s" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, fuzzy, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "已向 %s 发送消息" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "发送消息出错。" -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "无法开启通告。" -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "删除通告" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "消息已发布。" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "保存通告时出错。" -#: lib/command.php:536 +#: lib/command.php:562 #, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "无法删除通告。" -#: lib/command.php:547 +#: lib/command.php:573 #, fuzzy msgid "Error saving notice." msgstr "保存通告时出错。" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "指定要订阅的用户名" -#: lib/command.php:602 +#: lib/command.php:628 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "您未告知此个人信息" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "订阅 %s" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "指定要取消订阅的用户名" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "取消订阅 %s" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "命令尚未实现。" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "通告关闭。" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "无法关闭通告。" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "通告开启。" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "无法开启通告。" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "取消订阅 %s" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "您未告知此个人信息" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "您已订阅这些用户:" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "无法订阅他人更新。" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "无法订阅他人更新。" -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "您未告知此个人信息" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "您未告知此个人信息" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6483,6 +6714,10 @@ msgstr "没有这份文档。" msgid "Repeat this notice?" msgstr "无法删除通告。" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "是" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6689,47 +6924,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "几秒前" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "一分钟前" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "%d 分钟前" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "一小时前" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "%d 小时前" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "一天前" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "%d 天前" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "一个月前" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "%d 个月前" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 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 d721d59794..3747c71737 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 18:34+0000\n" -"PO-Revision-Date: 2010-04-11 18:37:38+0000\n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-11 21:45:05+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 (r64941); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64948); 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" @@ -75,8 +75,13 @@ msgstr "無此使用者" msgid "Save access settings" msgstr "線上即時通設定" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. #. TRANS: Button label -#: actions/accessadminpanel.php:203 lib/applicationeditform.php:361 +#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 +#: actions/imsettings.php:184 actions/smssettings.php:209 +#: lib/applicationeditform.php:361 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -107,7 +112,7 @@ msgstr "無此通知" #: 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:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:456 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:478 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "無此使用者" @@ -342,7 +347,7 @@ msgstr "" msgid "This status is already a favorite." msgstr "" -#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:285 msgid "Could not create favorite." msgstr "" @@ -463,7 +468,7 @@ msgstr "目前無請求" msgid "You are already a member of that group." msgstr "" -#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:321 +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:327 msgid "You have been blocked from that group by the admin." msgstr "" @@ -516,17 +521,17 @@ msgid "Invalid token." msgstr "尺寸錯誤" #: 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/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:267 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/groupunblock.php:66 actions/imsettings.php:227 #: 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:350 #: actions/register.php:165 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -560,12 +565,15 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:256 actions/grouplogo.php:322 -#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/emailsettings.php:286 actions/grouplogo.php:322 +#: actions/imsettings.php:242 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:248 lib/designsettings.php:304 +#: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." msgstr "" @@ -827,29 +835,44 @@ msgid "" "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:176 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:145 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +msgctxt "BUTTON" msgid "No" msgstr "" -#: actions/block.php:143 actions/deleteuser.php:150 +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:149 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "無此使用者" -#: actions/block.php:144 actions/deleteapplication.php:158 -#: actions/deletenotice.php:146 actions/deleteuser.php:151 -#: actions/groupblock.php:177 lib/repeatform.php:132 +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:152 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +msgctxt "BUTTON" msgid "Yes" msgstr "" -#: actions/block.php:144 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title for 'Yes' when blocking a user. +#: actions/block.php:156 actions/groupmembers.php:392 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "無此使用者" -#: actions/block.php:167 +#: actions/block.php:179 msgid "Failed to save block information." msgstr "" @@ -862,8 +885,8 @@ msgstr "" #: 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:162 -#: lib/command.php:358 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:166 +#: lib/command.php:368 #, fuzzy msgid "No such group." msgstr "無此通知" @@ -925,16 +948,24 @@ msgstr "" msgid "That address has already been confirmed." msgstr "" -#: actions/confirmaddress.php:116 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 +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:327 +#: actions/emailsettings.php:473 actions/imsettings.php:280 +#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 msgid "Couldn't update user." msgstr "無法更新使用者" -#: actions/confirmaddress.php:128 actions/emailsettings.php:391 -#: actions/imsettings.php:363 actions/smssettings.php:382 +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "無法取消信箱確認" @@ -992,12 +1023,14 @@ msgid "" "connections." msgstr "" -#: actions/deleteapplication.php:156 +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 #, fuzzy msgid "Do not delete this application" msgstr "無此通知" -#: actions/deleteapplication.php:160 +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 #, fuzzy msgid "Delete this application" msgstr "請在140個字以內描述你自己與你的興趣" @@ -1031,12 +1064,14 @@ msgstr "" msgid "Are you sure you want to delete this notice?" msgstr "" -#: actions/deletenotice.php:145 +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 #, fuzzy msgid "Do not delete this notice" msgstr "無此通知" -#: actions/deletenotice.php:146 lib/noticelist.php:656 +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:656 msgid "Delete this notice" msgstr "" @@ -1060,7 +1095,8 @@ msgid "" "the user from the database, without a backup." msgstr "" -#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 #, fuzzy msgid "Delete this user" msgstr "無此使用者" @@ -1180,15 +1216,13 @@ msgid "Reset back to default" msgstr "" #. TRANS: Submit button title -#: actions/designadminpanel.php:589 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/designadminpanel.php:589 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:226 -#: actions/tagother.php:154 actions/useradminpanel.php:294 -#: lib/applicationeditform.php:363 lib/designsettings.php:256 -#: lib/groupeditform.php:202 +#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 +#: actions/subscriptions.php:226 actions/tagother.php:154 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1324,180 +1358,237 @@ msgstr "無法存取個人圖像資料" msgid "Options saved." msgstr "" -#: actions/emailsettings.php:60 +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 #, fuzzy msgid "Email settings" msgstr "線上即時通設定" -#: actions/emailsettings.php:71 +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" -#: actions/emailsettings.php:100 actions/imsettings.php:100 -#: actions/smssettings.php:104 -msgid "Address" -msgstr "信箱" +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "確認信箱" -#: actions/emailsettings.php:105 +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 msgid "Current confirmed email address." msgstr "" -#: actions/emailsettings.php:107 actions/emailsettings.php:140 -#: actions/imsettings.php:108 actions/smssettings.php:115 -#: actions/smssettings.php:158 +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +msgctxt "BUTTON" msgid "Remove" msgstr "" -#: actions/emailsettings.php:113 +#: actions/emailsettings.php:122 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -#. TRANS: Submit button title -#: actions/emailsettings.php:117 actions/imsettings.php:120 -#: actions/smssettings.php:126 lib/applicationeditform.php:359 +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#, fuzzy +msgctxt "BUTTON" msgid "Cancel" msgstr "取消" -#: actions/emailsettings.php:121 -#, fuzzy -msgid "Email address" -msgstr "確認信箱" - -#: actions/emailsettings.php:123 +#. TRANS: Instructions for e-mail address input form. +#: actions/emailsettings.php:135 msgid "Email address, like \"UserName@example.org\"" msgstr "" -#: actions/emailsettings.php:126 actions/imsettings.php:133 -#: actions/smssettings.php:145 +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "新增" -#: actions/emailsettings.php:133 actions/smssettings.php:152 +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:147 actions/smssettings.php:171 msgid "Incoming email" msgstr "" -#: actions/emailsettings.php:138 actions/smssettings.php:157 +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:155 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" -#: actions/emailsettings.php:145 actions/smssettings.php:162 +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:164 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#: actions/emailsettings.php:148 actions/smssettings.php:164 +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:168 actions/smssettings.php:189 +msgctxt "BUTTON" msgid "New" msgstr "" -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "" +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:174 +#, fuzzy +msgid "Email preferences" +msgstr "確認信箱" -#: actions/emailsettings.php:158 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:180 msgid "Send me notices of new subscriptions through email." msgstr "" -#: actions/emailsettings.php:163 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:186 msgid "Send me email when someone adds my notice as a favorite." msgstr "" -#: actions/emailsettings.php:169 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:193 msgid "Send me email when someone sends me a private message." msgstr "" -#: actions/emailsettings.php:174 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:199 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -#: actions/emailsettings.php:179 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:205 msgid "Allow friends to nudge me and send me an email." msgstr "" -#: actions/emailsettings.php:185 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:212 msgid "I want to post notices by email." msgstr "" -#: actions/emailsettings.php:191 +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:219 msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:302 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:334 +msgid "Email preferences saved." msgstr "" -#: actions/emailsettings.php:320 +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:353 msgid "No email address." msgstr "" -#: actions/emailsettings.php:327 +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:361 msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:331 actions/register.php:201 +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:366 actions/register.php:201 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "此信箱無效" -#: actions/emailsettings.php:334 +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:370 msgid "That is already your email address." msgstr "" -#: actions/emailsettings.php:337 +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:374 msgid "That email address already belongs to another user." msgstr "" -#: actions/emailsettings.php:353 actions/imsettings.php:319 -#: actions/smssettings.php:337 +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "無法輸入確認碼" -#: actions/emailsettings.php:359 +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:398 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 +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" -#: actions/emailsettings.php:383 actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "" +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:424 +#, fuzzy +msgid "That is the wrong email address." +msgstr "請輸入暱稱或電子信箱" -#: actions/emailsettings.php:395 actions/imsettings.php:367 -#: actions/smssettings.php:386 -msgid "Confirmation cancelled." +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:438 +#, fuzzy +msgid "Email confirmation cancelled." msgstr "確認取消" -#: actions/emailsettings.php:413 +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:458 msgid "That is not your email address." msgstr "" -#: actions/emailsettings.php:432 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "" +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:479 +#, fuzzy +msgid "The email address was removed." +msgstr "此電子信箱已註冊過了" -#: actions/emailsettings.php:446 actions/smssettings.php:518 +#: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" -#: actions/emailsettings.php:456 actions/emailsettings.php:478 -#: actions/smssettings.php:528 actions/smssettings.php:552 +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" -#: actions/emailsettings.php:459 actions/smssettings.php:531 +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:508 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" -#: actions/emailsettings.php:481 actions/smssettings.php:555 +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:532 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1691,17 +1782,19 @@ msgid "" "the group in the future." msgstr "" -#: actions/groupblock.php:176 +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 #, fuzzy msgid "Do not block this user from this group" msgstr "無法連結到伺服器:%s" -#: actions/groupblock.php:177 +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 #, fuzzy msgid "Block this user from this group" msgstr "無此使用者" -#: actions/groupblock.php:194 +#: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1876,28 +1969,42 @@ msgstr "" msgid "Error removing the block." msgstr "儲存使用者發生錯誤" -#: actions/imsettings.php:59 +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 #, fuzzy msgid "IM settings" msgstr "線上即時通設定" -#: actions/imsettings.php:70 +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 #, 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 +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 #, fuzzy msgid "IM is not available." msgstr "個人首頁位址錯誤" -#: actions/imsettings.php:106 +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "線上即時通信箱" + +#: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "目前已確認的Jabber/Gtalk地址" -#: actions/imsettings.php:114 +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -1906,65 +2013,107 @@ msgstr "" "等待確認此信箱。看看你的Jabber/GTalk是否有訊息指示下一步動作。(你加入%s到你的" "好友清單了嗎?)" -#: actions/imsettings.php:124 -#, fuzzy -msgid "IM address" -msgstr "線上即時通信箱" - -#: actions/imsettings.php:126 +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:140 #, 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 +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:155 +msgid "IM preferences" +msgstr "" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:160 msgid "Send me notices through Jabber/GTalk." msgstr "" -#: actions/imsettings.php:148 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:166 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" -#: actions/imsettings.php:153 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:172 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -#: actions/imsettings.php:159 +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:179 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" -#: actions/imsettings.php:285 +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:287 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "" + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:309 msgid "No Jabber ID." msgstr "查無此Jabber ID" -#: actions/imsettings.php:292 +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:317 msgid "Cannot normalize that Jabber ID" msgstr "此JabberID錯誤" -#: actions/imsettings.php:296 +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:322 msgid "Not a valid Jabber ID" msgstr "此JabberID無效" -#: actions/imsettings.php:299 +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:326 msgid "That is already your Jabber ID." msgstr "" -#: actions/imsettings.php:302 +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:330 msgid "Jabber ID already belongs to another user." msgstr "此Jabber ID已有人使用" -#: actions/imsettings.php:327 +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:358 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" -#: actions/imsettings.php:387 +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:388 +msgid "That is the wrong IM address." +msgstr "" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:397 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "無法取消信箱確認" + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:402 +#, fuzzy +msgid "IM confirmation cancelled." +msgstr "確認取消" + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:424 msgid "That is not your Jabber ID." msgstr "" +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:447 +msgid "The IM address was removed." +msgstr "" + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -2005,7 +2154,9 @@ msgstr "" msgid "You are already subscribed to these users:" msgstr "" -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:398 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:414 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2099,7 +2250,9 @@ msgstr "" msgid "No nickname or ID." msgstr "無暱稱" -#: actions/joingroup.php:141 +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/joingroup.php:141 lib/command.php:346 #, php-format msgid "%1$s joined group %2$s" msgstr "" @@ -2108,11 +2261,13 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:100 lib/command.php:363 +#: actions/leavegroup.php:100 lib/command.php:373 msgid "You are not a member of that group." msgstr "" -#: actions/leavegroup.php:137 +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/leavegroup.php:137 lib/command.php:392 #, fuzzy, php-format msgid "%1$s left group %2$s" msgstr "%1$s的狀態是%2$s" @@ -2220,12 +2375,12 @@ msgstr "" msgid "New message" msgstr "" -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:459 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:481 msgid "You can't send a message to this user." msgstr "" -#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:443 -#: lib/command.php:529 +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:463 +#: lib/command.php:555 msgid "No content!" msgstr "無內容" @@ -2233,7 +2388,7 @@ msgstr "無內容" msgid "No recipient specified." msgstr "" -#: actions/newmessage.php:164 lib/command.php:462 +#: actions/newmessage.php:164 lib/command.php:484 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2489,7 +2644,7 @@ msgid "6 or more characters" msgstr "6個以上字元" #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 -#: actions/register.php:433 actions/smssettings.php:134 +#: actions/register.php:433 msgid "Confirm" msgstr "確認" @@ -3820,98 +3975,156 @@ msgstr "" msgid "Save site notice" msgstr "新訊息" -#: actions/smssettings.php:58 +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 #, fuzzy msgid "SMS settings" msgstr "線上即時通設定" -#: actions/smssettings.php:69 +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: actions/smssettings.php:91 +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 #, fuzzy msgid "SMS is not available." msgstr "個人首頁位址錯誤" -#: actions/smssettings.php:112 +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "線上即時通信箱" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" -#: actions/smssettings.php:123 +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" -#: actions/smssettings.php:130 +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 msgid "Confirmation code" msgstr "" -#: actions/smssettings.php:131 +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" -#: actions/smssettings.php:138 +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "確認" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" -#: actions/smssettings.php:140 +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" -#: actions/smssettings.php:174 +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +msgid "SMS preferences" +msgstr "" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -#: actions/smssettings.php:306 +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +msgid "SMS preferences saved." +msgstr "" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 msgid "No phone number." msgstr "" -#: actions/smssettings.php:311 +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" -#: actions/smssettings.php:318 +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 msgid "That is already your phone number." msgstr "" -#: actions/smssettings.php:321 +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 msgid "That phone number already belongs to another user." msgstr "" -#: actions/smssettings.php:347 +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 #, fuzzy 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 "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" -#: actions/smssettings.php:374 +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 msgid "That is the wrong confirmation number." msgstr "" -#: actions/smssettings.php:405 +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +#, fuzzy +msgid "SMS confirmation cancelled." +msgstr "確認取消" + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 msgid "That is not your phone number." msgstr "" -#: actions/smssettings.php:465 +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +msgid "The SMS phone number was removed." +msgstr "" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" -#: actions/smssettings.php:469 +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" -#: actions/smssettings.php:476 +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 #, 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 +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 msgid "No code entered" msgstr "" @@ -5112,10 +5325,8 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Button label -#: lib/applicationeditform.php:357 -#, fuzzy -msgctxt "BUTTON" +#. TRANS: Submit button title +#: lib/applicationeditform.php:359 msgid "Cancel" msgstr "取消" @@ -5188,35 +5399,41 @@ msgstr "" msgid "Notice with that id does not exist" msgstr "" -#: lib/command.php:99 lib/command.php:570 +#: lib/command.php:99 lib/command.php:596 #, fuzzy msgid "User has no last notice" msgstr "新訊息" -#: lib/command.php:125 +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:127 #, php-format msgid "Could not find a user with nickname %s" msgstr "無法更新使用者" -#: lib/command.php:143 +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:147 #, fuzzy, php-format msgid "Could not find a local user with nickname %s" msgstr "無法更新使用者" -#: lib/command.php:176 +#: lib/command.php:180 msgid "Sorry, this command is not yet implemented." msgstr "" -#: lib/command.php:221 +#: lib/command.php:225 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#: lib/command.php:228 +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:234 #, php-format msgid "Nudge sent to %s" msgstr "" -#: lib/command.php:254 +#: lib/command.php:260 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5224,199 +5441,203 @@ msgid "" "Notices: %3$s" msgstr "" -#: lib/command.php:296 +#: lib/command.php:302 msgid "Notice marked as fave." msgstr "" -#: lib/command.php:317 +#: lib/command.php:323 #, fuzzy msgid "You are already a member of that group" msgstr "無法連結到伺服器:%s" -#: lib/command.php:331 +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:339 #, fuzzy, php-format -msgid "Could not join user %s to group %s" +msgid "Could not join user %1$s to group %2$s" msgstr "無法連結到伺服器:%s" -#: lib/command.php:336 +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:385 #, fuzzy, php-format -msgid "%s joined group %s" -msgstr "%1$s的狀態是%2$s" - -#: lib/command.php:373 -#, fuzzy, php-format -msgid "Could not remove user %s to group %s" +msgid "Could not remove user %s from group %s" msgstr "無法從 %s 建立OpenID" -#: lib/command.php:378 -#, fuzzy, php-format -msgid "%s left group %s" -msgstr "%1$s的狀態是%2$s" - -#: lib/command.php:401 +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:418 #, fuzzy, php-format msgid "Fullname: %s" msgstr "全名" +#. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:404 lib/mail.php:263 +#: lib/command.php:422 lib/mail.php:263 #, php-format msgid "Location: %s" msgstr "" +#. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:407 lib/mail.php:266 +#: lib/command.php:426 lib/mail.php:266 #, php-format msgid "Homepage: %s" msgstr "" -#: lib/command.php:410 +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:430 #, php-format msgid "About: %s" msgstr "" -#: lib/command.php:437 +#: lib/command.php:457 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -#: lib/command.php:450 +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:472 #, php-format -msgid "Message too long - maximum is %d characters, you sent %d" +msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -#: lib/command.php:468 +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: lib/command.php:492 #, php-format msgid "Direct message to %s sent" msgstr "" -#: lib/command.php:470 +#: lib/command.php:494 msgid "Error sending direct message." msgstr "" -#: lib/command.php:490 +#: lib/command.php:514 #, fuzzy msgid "Cannot repeat your own notice" msgstr "儲存使用者發生錯誤" -#: lib/command.php:495 +#: lib/command.php:519 #, fuzzy msgid "Already repeated that notice" msgstr "無此使用者" -#: lib/command.php:503 +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:529 #, fuzzy, php-format msgid "Notice from %s repeated" msgstr "更新個人圖像" -#: lib/command.php:505 +#: lib/command.php:531 #, fuzzy msgid "Error repeating notice." msgstr "儲存使用者發生錯誤" -#: lib/command.php:536 +#: lib/command.php:562 #, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" -#: lib/command.php:545 +#: lib/command.php:571 #, fuzzy, php-format msgid "Reply to %s sent" msgstr "&s的微型部落格" -#: lib/command.php:547 +#: lib/command.php:573 msgid "Error saving notice." msgstr "儲存使用者發生錯誤" -#: lib/command.php:594 +#: lib/command.php:620 msgid "Specify the name of the user to subscribe to" msgstr "" -#: lib/command.php:602 +#: lib/command.php:628 msgid "Can't subscribe to OMB profiles by command." msgstr "" -#: lib/command.php:608 +#: lib/command.php:634 #, php-format msgid "Subscribed to %s" msgstr "" -#: lib/command.php:629 lib/command.php:728 +#: lib/command.php:655 lib/command.php:754 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: lib/command.php:638 +#: lib/command.php:664 #, php-format msgid "Unsubscribed from %s" msgstr "" -#: lib/command.php:656 lib/command.php:679 +#: lib/command.php:682 lib/command.php:705 msgid "Command not yet implemented." msgstr "" -#: lib/command.php:659 +#: lib/command.php:685 msgid "Notification off." msgstr "" -#: lib/command.php:661 +#: lib/command.php:687 msgid "Can't turn off notification." msgstr "" -#: lib/command.php:682 +#: lib/command.php:708 msgid "Notification on." msgstr "" -#: lib/command.php:684 +#: lib/command.php:710 msgid "Can't turn on notification." msgstr "" -#: lib/command.php:697 +#: lib/command.php:723 msgid "Login command is disabled" msgstr "" -#: lib/command.php:708 +#: lib/command.php:734 #, php-format msgid "This link is useable only once, and is good for only 2 minutes: %s" msgstr "" -#: lib/command.php:735 +#: lib/command.php:761 #, fuzzy, php-format msgid "Unsubscribed %s" msgstr "此帳號已註冊" -#: lib/command.php:752 +#: lib/command.php:778 #, fuzzy msgid "You are not subscribed to anyone." msgstr "此帳號已註冊" -#: lib/command.php:754 +#: lib/command.php:780 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "此帳號已註冊" -#: lib/command.php:774 +#: lib/command.php:800 #, fuzzy msgid "No one is subscribed to you." msgstr "無此訂閱" -#: lib/command.php:776 +#: lib/command.php:802 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "無此訂閱" -#: lib/command.php:796 +#: lib/command.php:822 #, fuzzy msgid "You are not a member of any groups." msgstr "無法連結到伺服器:%s" -#: lib/command.php:798 +#: lib/command.php:824 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "無法連結到伺服器:%s" -#: lib/command.php:812 +#: lib/command.php:838 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6267,6 +6488,10 @@ msgstr "無此文件" msgid "Repeat this notice?" msgstr "無此通知" +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "" + #: lib/repeatform.php:132 #, fuzzy msgid "Repeat this notice" @@ -6462,47 +6687,57 @@ msgctxt "role" msgid "Moderator" msgstr "" -#: lib/util.php:1053 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1054 msgid "a few seconds ago" msgstr "" -#: lib/util.php:1055 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1057 msgid "about a minute ago" msgstr "" -#: lib/util.php:1057 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1061 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1059 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1064 msgid "about an hour ago" msgstr "" -#: lib/util.php:1061 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1068 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1063 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1071 msgid "about a day ago" msgstr "" -#: lib/util.php:1065 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1075 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1067 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1078 msgid "about a month ago" msgstr "" -#: lib/util.php:1069 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1082 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1071 +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1085 msgid "about a year ago" msgstr "" From c59e90b20b058f0fbad1824d889d9256d9a94312 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 11 Apr 2010 23:57:18 +0200 Subject: [PATCH 69/80] Number parameters --- lib/command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/command.php b/lib/command.php index ca09da28f6..a769dc1fc6 100644 --- a/lib/command.php +++ b/lib/command.php @@ -382,7 +382,7 @@ class DropCommand extends Command } catch (Exception $e) { // TRANS: Message given having failed to remove a user from a group. // TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. - $channel->error($cur, sprintf(_('Could not remove user %s from group %s'), + $channel->error($cur, sprintf(_('Could not remove user %1$s from group %2$s'), $cur->nickname, $group->nickname)); return; } From 2bb02e86986e578390d3cf46524b396b4c264a2f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 12 Apr 2010 00:57:02 +0200 Subject: [PATCH 70/80] Adding Dutch translation for OpenID plugin. --- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 340 ++++++++++++++++++ 1 file changed, 340 insertions(+) create mode 100644 plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po new file mode 100644 index 0000000000..ae0329376c --- /dev/null +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -0,0 +1,340 @@ +# Translation of StatusNet plugin OpenID to Dutch +# +# Author@translatewiki.net: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"PO-Revision-Date: 2010-04-12 00:53+0100\n" +"Language-Team: Dutch\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Last-Translator: Siebrand Mazeland \n" +"MIME-Version: 1.0\n" + +#: finishaddopenid.php:67 +msgid "Not logged in." +msgstr "Niet aangemeld." + +#: finishaddopenid.php:88 +#: finishopenidlogin.php:149 +msgid "OpenID authentication cancelled." +msgstr "De authenticatie via OpenID is afgebroken." + +#: finishaddopenid.php:92 +#: finishopenidlogin.php:153 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "De authenticatie via OpenID is mislukt: %s" + +#: finishaddopenid.php:112 +msgid "You already have this OpenID!" +msgstr "U hebt deze OpenID al!" + +#: finishaddopenid.php:114 +msgid "Someone else already has this OpenID." +msgstr "Iemand anders gebruikt deze OpenID al." + +#: finishaddopenid.php:126 +msgid "Error connecting user." +msgstr "Fout bij het verbinden met de gebruiker." + +#: finishaddopenid.php:131 +msgid "Error updating profile" +msgstr "Fout bij het bijwerken van het profiel." + +#: finishaddopenid.php:170 +#: openidlogin.php:95 +msgid "OpenID Login" +msgstr "Aanmelden via OpenID" + +#: finishopenidlogin.php:34 +#: openidlogin.php:30 +msgid "Already logged in." +msgstr "U bent al aangemeld." + +#: finishopenidlogin.php:38 +#: openidlogin.php:37 +#: openidsettings.php:194 +msgid "There was a problem with your session token. Try again, please." +msgstr "Er was een probleem met uw sessietoken. Probeer het opnieuw." + +#: finishopenidlogin.php:43 +msgid "You can't register if you don't agree to the license." +msgstr "U kunt niet registreren als u niet akkoord gaat met de licentie." + +#: finishopenidlogin.php:52 +#: openidsettings.php:208 +msgid "Something weird happened." +msgstr "Er is iets vreemds gebeurd." + +#: finishopenidlogin.php:66 +#, 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 "Dit is de eerste keer dat u aameldt bij %s en uw OpenID moet gekoppeld worden aan uw lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of koppelen met uw bestaande gebruiker als u die al hebt." + +#: finishopenidlogin.php:72 +msgid "OpenID Account Setup" +msgstr "Instellingen OpenID" + +#: finishopenidlogin.php:97 +msgid "Create new account" +msgstr "Nieuwe gebruiker aanmaken" + +#: finishopenidlogin.php:99 +msgid "Create a new user with this nickname." +msgstr "Nieuwe gebruiker met deze naam aanmaken." + +#: finishopenidlogin.php:102 +msgid "New nickname" +msgstr "Nieuwe gebruiker" + +#: finishopenidlogin.php:104 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 kleine letters of getallen; geen leestekens of spaties" + +#: finishopenidlogin.php:114 +msgid "My text and files are available under " +msgstr "Mijn teksten en bestanden zijn beschikbaar onder" + +#: finishopenidlogin.php:117 +msgid " except this private data: password, email address, IM address, phone number." +msgstr "behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." + +#: finishopenidlogin.php:121 +msgid "Create" +msgstr "Aanmaken" + +#: finishopenidlogin.php:126 +msgid "Connect existing account" +msgstr "Koppelen met bestaande gebruiker" + +#: finishopenidlogin.php:128 +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Als u al een gebruiker hebt, meld u dan aan met uw gebruikersnaam en wachtwoord om de gebruiker te koppelen met uw OpenID." + +#: finishopenidlogin.php:131 +msgid "Existing nickname" +msgstr "Bestaande gebruiker" + +#: finishopenidlogin.php:134 +msgid "Password" +msgstr "Wachtwoord" + +#: finishopenidlogin.php:137 +msgid "Connect" +msgstr "Koppelen" + +#: finishopenidlogin.php:215 +#: finishopenidlogin.php:224 +msgid "Registration not allowed." +msgstr "Registreren is niet mogelijk." + +#: finishopenidlogin.php:231 +msgid "Not a valid invitation code." +msgstr "De uitnodigingscode is niet geldig." + +#: finishopenidlogin.php:241 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "De gebruikersnaam mag alleen uit kleine letters en cijfers bestaan, en geen spaties bevatten." + +#: finishopenidlogin.php:246 +msgid "Nickname not allowed." +msgstr "Deze gebruikersnaam is niet toegestaan." + +#: finishopenidlogin.php:251 +msgid "Nickname already in use. Try another one." +msgstr "Deze gebruikersnaam wordt al gebruikt. Kies een andere." + +#: finishopenidlogin.php:258 +#: finishopenidlogin.php:338 +msgid "Stored OpenID not found." +msgstr "Het opgeslagen OpenID is niet aangetroffen." + +#: finishopenidlogin.php:267 +msgid "Creating new account for OpenID that already has a user." +msgstr "Bezig met het aanmaken van een gebruiker voor OpenID die al een gebruiker heeft." + +#: finishopenidlogin.php:327 +msgid "Invalid username or password." +msgstr "Ongeldige gebruikersnaam of wachtwoord." + +#: finishopenidlogin.php:345 +msgid "Error connecting user to OpenID." +msgstr "Fout bij het koppelen met OpenID." + +#: openid.php:141 +msgid "Cannot instantiate OpenID consumer object." +msgstr "Het was niet mogelijk een OpenID-object aan te maken." + +#: openid.php:151 +msgid "Not a valid OpenID." +msgstr "Geen geldige OpenID." + +#: openid.php:153 +#, php-format +msgid "OpenID failure: %s" +msgstr "OpenID-fout: %s" + +#: openid.php:180 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "Het was niet mogelijk door te verwijzen naar de server: %s" + +#: openid.php:198 +#, php-format +msgid "Could not create OpenID form: %s" +msgstr "Het was niet mogelijk het OpenID-formulier aan te maken: %s" + +#: openid.php:214 +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Dit formulier hoort zichzelf automatisch op te slaan. Als dat niet gebeurt, klik dan op de knop \"Aanmelden\" om naar uw OpenID-provider te gaan." + +#: openid.php:246 +msgid "Error saving the profile." +msgstr "Fout bij het opslaan van het profiel." + +#: openid.php:257 +msgid "Error saving the user." +msgstr "Fout bij het opslaan van de gebruiker." + +#: openid.php:277 +msgid "OpenID Auto-Submit" +msgstr "OpenID automatisch opslaan" + +#: openidlogin.php:66 +#, php-format +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Om veiligheidsreden moet u opnieuw aanmelden met uw [OpenID](%%doc.openid%%) voordat u uw instellingen kunt wijzigen." + +#: openidlogin.php:70 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "Aanmelden met een [OpenID](%%doc.openid%%)-gebruiker." + +#: openidlogin.php:112 +msgid "OpenID login" +msgstr "Aanmelden via OpenID" + +#: openidlogin.php:117 +#: openidsettings.php:107 +msgid "OpenID URL" +msgstr "OpenID-URL" + +#: openidlogin.php:119 +msgid "Your OpenID URL" +msgstr "Uw OpenID-URL" + +#: openidlogin.php:122 +msgid "Remember me" +msgstr "Aanmeldgegevens onthouden" + +#: openidlogin.php:123 +msgid "Automatically login in the future; not for shared computers!" +msgstr "In het vervolg automatisch aanmelden. Niet gebruiken op gedeelde computers!" + +#: openidlogin.php:127 +msgid "Login" +msgstr "Aanmelden" + +#: OpenIDPlugin.php:123 +#: OpenIDPlugin.php:135 +msgid "OpenID" +msgstr "OpenID" + +#: OpenIDPlugin.php:124 +msgid "Login or register with OpenID" +msgstr "Aanmelden of registreren met OpenID" + +#: OpenIDPlugin.php:136 +msgid "Add or remove OpenIDs" +msgstr "OpenID's toevoegen of verwijderen" + +#: OpenIDPlugin.php:324 +msgid "Use OpenID to login to the site." +msgstr "Gebruik OpenID om aan te melden bij de site." + +#: openidserver.php:106 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "U mag de identiteit %s niet gebruiken." + +#: openidserver.php:126 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "Gewoon een OpenID-provider. Niets te zien hier..." + +#: openidsettings.php:59 +msgid "OpenID settings" +msgstr "OpenID-instellingen" + +#: openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "Met [OpenID](%%doc.openid%%) kunt u aanmelden bij veel websites met dezelfde gebruiker. U kunt hier uw gekoppelde OpenID's beheren." + +#: openidsettings.php:99 +msgid "Add OpenID" +msgstr "OpenID toevoegen" + +#: openidsettings.php:102 +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Als u een OpenID aan uw gebruiker wilt toevoegen, voer deze dan hieronder in en klik op \"Toevoegen\"." + +#: openidsettings.php:117 +msgid "Add" +msgstr "Toevoegen" + +#: openidsettings.php:129 +msgid "Remove OpenID" +msgstr "OpenID verwijderen" + +#: openidsettings.php:134 +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Door uw enige OpenID te verwijderen zou het niet meer mogelijk zijn om aan te melden. Als u het wilt verwijderen, voeg dan eerst een andere OpenID toe." + +#: openidsettings.php:149 +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "U kunt een OpenID van uw gebruiker verwijderen door te klikken op de knop \"Verwijderen\"." + +#: openidsettings.php:172 +msgid "Remove" +msgstr "Verwijderen" + +#: openidsettings.php:228 +msgid "No such OpenID." +msgstr "De OpenID bestaat niet." + +#: openidsettings.php:233 +msgid "That OpenID does not belong to you." +msgstr "Die OpenID is niet van u." + +#: openidsettings.php:237 +msgid "OpenID removed." +msgstr "OpenID verwijderd." + +#: openidtrust.php:51 +msgid "OpenID Identity Verification" +msgstr "OpenID-identiteitscontrole" + +#: openidtrust.php:69 +msgid "This page should only be reached during OpenID processing, not directly." +msgstr "Deze pagina hoort alleen bezocht te worden tijdens het verwerken van een OpenID, en niet direct." + +#: 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 heeft gevraagd uw identiteit te bevestigen. Klik op \"Doorgaan\" om uw indentiteit te controleren en aan te melden zonder een wachtwoord te hoeven invoeren." + +#: openidtrust.php:136 +msgid "Continue" +msgstr "Doorgaan" + +#: openidtrust.php:137 +msgid "Cancel" +msgstr "Annuleren" + From a05e674843afdbae3f138f541624708a664f1f2a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 12 Apr 2010 11:49:59 -0700 Subject: [PATCH 71/80] showplugins.php: dump list of activated plugins and their settings on this site --- lib/statusnet.php | 15 +++++++++++++++ scripts/showplugins.php | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100755 scripts/showplugins.php diff --git a/lib/statusnet.php b/lib/statusnet.php index eba9ab9b8e..2aa73486eb 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -31,6 +31,7 @@ class StatusNet { protected static $have_config; protected static $is_api; + protected static $plugins = array(); /** * Configure and instantiate a plugin into the current configuration. @@ -74,9 +75,22 @@ class StatusNet $inst->$aname = $avalue; } } + + // Record activated plugins for later display/config dump + self::$plugins[] = array($name, $attrs); + return true; } + /** + * Get a list of activated plugins in this process. + * @return array of (string $name, array $args) pairs + */ + public static function getActivePlugins() + { + return self::$plugins; + } + /** * Initialize, or re-initialize, StatusNet global configuration * and plugins. @@ -232,6 +246,7 @@ class StatusNet global $_server, $_path, $config; Event::clearHandlers(); + self::$plugins = array(); // try to figure out where we are. $server and $path // can be set by including module, else we guess based diff --git a/scripts/showplugins.php b/scripts/showplugins.php new file mode 100755 index 0000000000..058393b0ee --- /dev/null +++ b/scripts/showplugins.php @@ -0,0 +1,38 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +require_once INSTALLDIR.'/scripts/commandline.inc'; + +foreach (StatusNet::getActivePlugins() as $data) { + list($plugin, $args) = $data; + echo "$plugin: "; + if ($args === null) { + echo "(no args)\n"; + } else { + foreach ($args as $arg => $val) { + echo "\n $arg: "; + var_export($val); + } + echo "\n"; + } + echo "\n"; +} From 946328771047974d918a167eae3e8d74211fabe8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 12 Apr 2010 11:49:59 -0700 Subject: [PATCH 72/80] showplugins.php: dump list of activated plugins and their settings on this site --- lib/statusnet.php | 15 +++++++++++++++ scripts/showplugins.php | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100755 scripts/showplugins.php diff --git a/lib/statusnet.php b/lib/statusnet.php index eba9ab9b8e..2aa73486eb 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -31,6 +31,7 @@ class StatusNet { protected static $have_config; protected static $is_api; + protected static $plugins = array(); /** * Configure and instantiate a plugin into the current configuration. @@ -74,9 +75,22 @@ class StatusNet $inst->$aname = $avalue; } } + + // Record activated plugins for later display/config dump + self::$plugins[] = array($name, $attrs); + return true; } + /** + * Get a list of activated plugins in this process. + * @return array of (string $name, array $args) pairs + */ + public static function getActivePlugins() + { + return self::$plugins; + } + /** * Initialize, or re-initialize, StatusNet global configuration * and plugins. @@ -232,6 +246,7 @@ class StatusNet global $_server, $_path, $config; Event::clearHandlers(); + self::$plugins = array(); // try to figure out where we are. $server and $path // can be set by including module, else we guess based diff --git a/scripts/showplugins.php b/scripts/showplugins.php new file mode 100755 index 0000000000..058393b0ee --- /dev/null +++ b/scripts/showplugins.php @@ -0,0 +1,38 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +require_once INSTALLDIR.'/scripts/commandline.inc'; + +foreach (StatusNet::getActivePlugins() as $data) { + list($plugin, $args) = $data; + echo "$plugin: "; + if ($args === null) { + echo "(no args)\n"; + } else { + foreach ($args as $arg => $val) { + echo "\n $arg: "; + var_export($val); + } + echo "\n"; + } + echo "\n"; +} From 89f28c7a0f77b5e3debcf9ec4ce6e020b3f0f12b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 12 Apr 2010 23:54:09 +0200 Subject: [PATCH 73/80] Localisation updates for !StatusNet from !translatewiki.net !sntrans Signed-off-by: Siebrand Mazeland --- locale/af/LC_MESSAGES/statusnet.po | 8 +- locale/ar/LC_MESSAGES/statusnet.po | 12 +- locale/arz/LC_MESSAGES/statusnet.po | 12 +- locale/bg/LC_MESSAGES/statusnet.po | 8 +- locale/br/LC_MESSAGES/statusnet.po | 8 +- locale/ca/LC_MESSAGES/statusnet.po | 12 +- locale/cs/LC_MESSAGES/statusnet.po | 8 +- locale/de/LC_MESSAGES/statusnet.po | 12 +- locale/el/LC_MESSAGES/statusnet.po | 8 +- locale/en_GB/LC_MESSAGES/statusnet.po | 12 +- locale/es/LC_MESSAGES/statusnet.po | 351 ++++++++++++++++---------- locale/fa/LC_MESSAGES/statusnet.po | 10 +- locale/fi/LC_MESSAGES/statusnet.po | 10 +- locale/fr/LC_MESSAGES/statusnet.po | 77 ++---- locale/ga/LC_MESSAGES/statusnet.po | 8 +- locale/gl/LC_MESSAGES/statusnet.po | 281 +++++++++++---------- locale/he/LC_MESSAGES/statusnet.po | 8 +- locale/hsb/LC_MESSAGES/statusnet.po | 12 +- locale/ia/LC_MESSAGES/statusnet.po | 12 +- locale/is/LC_MESSAGES/statusnet.po | 8 +- locale/it/LC_MESSAGES/statusnet.po | 12 +- locale/ja/LC_MESSAGES/statusnet.po | 12 +- locale/ko/LC_MESSAGES/statusnet.po | 10 +- locale/mk/LC_MESSAGES/statusnet.po | 83 +++--- locale/nb/LC_MESSAGES/statusnet.po | 12 +- locale/nl/LC_MESSAGES/statusnet.po | 65 ++--- locale/nn/LC_MESSAGES/statusnet.po | 8 +- locale/pl/LC_MESSAGES/statusnet.po | 77 ++---- locale/pt/LC_MESSAGES/statusnet.po | 14 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 12 +- locale/ru/LC_MESSAGES/statusnet.po | 86 +++---- locale/statusnet.pot | 4 +- locale/sv/LC_MESSAGES/statusnet.po | 64 ++--- locale/te/LC_MESSAGES/statusnet.po | 116 ++++++--- locale/tr/LC_MESSAGES/statusnet.po | 8 +- locale/uk/LC_MESSAGES/statusnet.po | 82 +++--- locale/vi/LC_MESSAGES/statusnet.po | 8 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 8 +- locale/zh_TW/LC_MESSAGES/statusnet.po | 8 +- 39 files changed, 779 insertions(+), 787 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 5c4fdc370e..b9bae52129 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:03+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:00+0000\n" "Language-Team: Afrikaans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: out-statusnet\n" @@ -5281,7 +5281,7 @@ msgstr "U kan nie die gebruiker volg nie: die gebruiker bestaan nie." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Kon nie die groep skep nie." #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index a300979b85..f6bf14d12e 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-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:06+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:04+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5331,7 +5331,7 @@ msgstr "أنت بالفعل عضو في هذه المجموعة" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." @@ -5339,8 +5339,8 @@ msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "لم يمكن إزالة المستخدم %s من المجموعة %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 765a3a6dbe..3b6d78a7b6 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-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:09+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:07+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 (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5348,7 +5348,7 @@ msgstr "انت اصلا عضو فى الجروپ ده" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "ما نفعش يضم %1$s للجروپ %2$s." @@ -5356,8 +5356,8 @@ msgstr "ما نفعش يضم %1$s للجروپ %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "ما نفعش يشيل اليوزر %s لجروپ %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index a23a8a62a2..e38fe609c7 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:12+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:11+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5538,7 +5538,7 @@ msgstr "Грешка при проследяване — потребителя #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Грешка при проследяване — потребителят не е намерен." #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index d9fb1d0828..3b72ee8c2c 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:15+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:14+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5293,7 +5293,7 @@ msgstr "Diposubl eo stagañ an implijer %1$s d'ar strollad %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s." #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 778a1ebce3..55bbac1964 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:17+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:18+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5577,7 +5577,7 @@ msgstr "Ja sou membre del grup." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." @@ -5585,8 +5585,8 @@ msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "No s'ha pogut suprimir l'usuari %1$s del grup %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index ff11613736..b4efa94331 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:20+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:21+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5561,7 +5561,7 @@ msgstr "Nelze přesměrovat na server: %s" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Nelze vytvořit OpenID z: %s" #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 56db81a7f3..f8a75b1a91 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -15,12 +15,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:24+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:26+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5597,7 +5597,7 @@ msgstr "Du bist bereits Mitglied dieser Gruppe" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen." @@ -5605,8 +5605,8 @@ msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Konnte Benutzer %1$s nicht aus der Gruppe %2$s entfernen." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index e449fbac9c..8fc8ac6c41 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:27+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:29+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5465,7 +5465,7 @@ msgstr "Αδύνατη η αποθήκευση των νέων πληροφορ #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Αδύνατη η αποθήκευση του προφίλ." #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index fd16a8bf71..38feccec76 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:30+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:32+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 (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5512,7 +5512,7 @@ msgstr "You are already a member of that group." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Could not join user %1$s to group %2$s." @@ -5520,8 +5520,8 @@ msgstr "Could not join user %1$s to group %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Could not remove user %s to group %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Could not remove user %1$s to group %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 117947d5aa..39c2e95b80 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:33+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:36+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -176,8 +176,8 @@ 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 "" -"Trata de suscribirte a más personas, [unirte a un grupo] (%%action.groups%%) " -"o publicar algo." +"Puedes intentar [darle un toque a %1$s](../%2$s) desde su perfil o [publicar " +"algo a su atención](%%%%action.newnotice%%%%?status_textarea=%3$s)." #: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 #, php-format @@ -185,8 +185,8 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to his or her attention." msgstr "" -"Puede intentar [guiñar a %1$s](../%2$s) desde su perfil o [publicar algo a " -"su atención ](%%%%action.newnotice%%%%?status_textarea=%3$s)." +"¿Por qué no [registrar una cuenta](%%%%action.register%%%%) y luego darle un " +"toque a %s o publicar algo a su atención?" #. TRANS: H1 text #: actions/all.php:178 @@ -723,7 +723,7 @@ msgstr "Repeticiones de %s" #: actions/apitimelinetag.php:104 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" -msgstr "Avisos marcados con %s" +msgstr "Avisos etiquetados con %s" #: actions/apitimelinetag.php:106 actions/tagrss.php:65 #, php-format @@ -844,7 +844,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "No" @@ -863,7 +862,6 @@ msgstr "No bloquear a este usuario" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Sí" @@ -1156,12 +1154,12 @@ msgstr "" #. TRANS: Used as radio button label to add a background image. #: actions/designadminpanel.php:459 lib/designsettings.php:139 msgid "On" -msgstr "Activado" +msgstr "Activar" #. TRANS: Used as radio button label to not add a background image. #: actions/designadminpanel.php:476 lib/designsettings.php:155 msgid "Off" -msgstr "Desactivado" +msgstr "Desactivar" #: actions/designadminpanel.php:477 lib/designsettings.php:156 msgid "Turn background image on or off." @@ -1367,7 +1365,6 @@ msgstr "Actual dirección de correo electrónico confirmada" #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "Eliminar" @@ -1386,7 +1383,6 @@ msgstr "" #. TRANS: Button label #: actions/emailsettings.php:127 actions/imsettings.php:131 #: actions/smssettings.php:137 lib/applicationeditform.php:357 -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1401,7 +1397,6 @@ msgstr "Correo electrónico, como \"NombredeUsuario@example.org\"" #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Añadir" @@ -1427,16 +1422,14 @@ msgstr "Hace una nueva dirección de correo para postear; cancela la anterior." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "Nuevo" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Preferencias" +msgstr "Preferencias de correo electrónico" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1478,9 +1471,8 @@ msgstr "Publicar un MicroID para mi dirección de correo." #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "Preferencias de diseño guardadas." +msgstr "Preferencias de correo electrónico guardadas." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1536,15 +1528,13 @@ msgstr "Ninguna confirmación pendiente para cancelar." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "Esa dirección de mensajería instantánea es incorrecta." +msgstr "Esa es la dirección de correo electrónico incorrecta." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Confirmación cancelada." +msgstr "Confirmación de correo electrónico cancelada." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1554,9 +1544,8 @@ msgstr "Esa no es tu dirección de correo electrónico" #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "La dirección fue eliminada." +msgstr "La dirección de correo electrónico ha sido eliminada." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -2019,9 +2008,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Preferencias" +msgstr "Preferencias de mensajería instantánea" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2093,15 +2081,13 @@ msgstr "Esa dirección de mensajería instantánea es incorrecta." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "No se pudo eliminar la confirmación de correo electrónico." +msgstr "No se pudo eliminar la confirmación de mensajería instantánea." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Confirmación cancelada." +msgstr "Confirmación de mensajería instantánea cancelada." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2111,9 +2097,8 @@ msgstr "Ese no es tu Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "La dirección fue eliminada." +msgstr "La dirección de mensajería instantánea ha sido eliminada." #: actions/inbox.php:59 #, php-format @@ -2501,16 +2486,16 @@ msgstr "" msgid "" "This user doesn't allow nudges or hasn't confirmed or set his email yet." msgstr "" -"Este usuario no permite zumbidos o todavía no confirma o configura su correo " +"Este usuario no permite toques o todavía no confirma o configura su correo " "electrónico." #: actions/nudge.php:94 msgid "Nudge sent" -msgstr "Se envió zumbido" +msgstr "Toque enviado" #: actions/nudge.php:97 msgid "Nudge sent!" -msgstr "¡Codazo enviado!" +msgstr "¡Toque enviado!" #: actions/oauthappssettings.php:59 msgid "You must be logged in to list your applications." @@ -2745,9 +2730,9 @@ msgid "Background directory not writable: %s." msgstr "Directorio de fondo no escribible: %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Directorio de configuración regional ilegible: $s" +msgstr "Directorio de configuración regional ilegible: %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2974,12 +2959,14 @@ msgstr "Compartir mi ubicación actual al publicar los mensajes" #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:210 msgid "Tags" -msgstr "Tags" +msgstr "Etiquetas" #: actions/profilesettings.php:147 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" +msgstr "" +"Etiquetas para ti (letras, números, -, ., y _), separadas por comas o " +"espacios" #: actions/profilesettings.php:151 msgid "Language" @@ -3126,12 +3113,13 @@ msgstr "Nube de etiquetas pública" #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " -msgstr "Éstos son los tags recientes más populares en %s" +msgstr "Estas son las etiquetas recientes más populares en %s " #: actions/publictagcloud.php:69 #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "Aún nadie a publicado un aviso con [hashtags] (%%doc.tags%%)" +msgstr "" +"Aún nadie ha publicado un aviso con una [etiqueta clave] (%%doc.tags%%)" #: actions/publictagcloud.php:72 msgid "Be the first to post one!" @@ -3148,7 +3136,7 @@ msgstr "" #: actions/publictagcloud.php:134 msgid "Tag cloud" -msgstr "Nube de tags" +msgstr "Nube de etiquetas" #: actions/recoverpassword.php:36 msgid "You are already logged in!" @@ -3555,11 +3543,11 @@ msgstr "StatusNet" #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." -msgstr "No puedes enviar usuarios a la zona de pruebas en este sitio." +msgstr "No puedes imponer restricciones a los usuarios en este sitio." #: actions/sandbox.php:72 msgid "User is already sandboxed." -msgstr "El usuario ya está en la zona de pruebas." +msgstr "Al usuario ya se le ha impuesto restricciones." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 @@ -3974,7 +3962,6 @@ msgid "Minimum text limit is 0 (unlimited)." msgstr "El límite mínimo de texto es 0 (sin límite)." #: actions/siteadminpanel.php:171 -#, fuzzy msgid "Dupe limit must be one or more seconds." msgstr "El límite de duplicación debe ser de 1 o más segundos." @@ -4104,9 +4091,8 @@ msgstr "SMS no está disponible." #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "Dirección de mensajería instantánea" +msgstr "Dirección de SMS" #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 @@ -4130,7 +4116,6 @@ msgstr "Ingrese el código recibido en su teléfono" #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" msgstr "Confirmar" @@ -4147,9 +4132,8 @@ msgstr "Número telefónico, sin puntuación ni espacios, incluya código de ár #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "Preferencias" +msgstr "Preferencias de SMS" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4162,9 +4146,8 @@ msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "Preferencias guardadas." +msgstr "Preferencias de SMS guardadas." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 @@ -4203,9 +4186,8 @@ msgstr "Ese no es el número de confirmación" #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 -#, fuzzy msgid "SMS confirmation cancelled." -msgstr "Confirmación cancelada." +msgstr "Confirmación de SMS cancelada." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -4215,9 +4197,8 @@ msgstr "Ese no es tu número telefónico" #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "Número de teléfono de SMS" +msgstr "El número de teléfono para SMS ha sido eliminado." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 @@ -4269,7 +4250,6 @@ msgid "Invalid snapshot report URL." msgstr "URL de instantánea de reporte inválido" #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" msgstr "Aleatoriamente durante visita Web" @@ -4445,7 +4425,7 @@ msgstr "No existe argumento de ID." #: actions/tagother.php:65 #, php-format msgid "Tag %s" -msgstr "%s tag" +msgstr "%s etiqueta" #: actions/tagother.php:77 lib/userprofile.php:76 msgid "User profile" @@ -4458,14 +4438,15 @@ msgstr "Foto" #: actions/tagother.php:141 msgid "Tag user" -msgstr "Usuario de tag" +msgstr "Etiquetar usuario" #: actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" msgstr "" -"Tags de este usuario (letras, números, -, ., y _), coma- o espacio- separado" +"Etiquetas para este usuario (letras, números, -, ., y _), separadas por " +"comas o espacios" #: actions/tagother.php:193 msgid "" @@ -4481,11 +4462,12 @@ msgstr "No se han podido guardar las etiquetas." #: actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" -"Usar este formulario para agregar tags a tus suscriptores o suscripciones." +"Usa este formulario para agregar etiquetas a tus suscriptores o " +"suscripciones." #: actions/tagrss.php:35 msgid "No such tag." -msgstr "No existe ese tag." +msgstr "No existe tal etiqueta." #: actions/twitapitrends.php:85 msgid "API method under construction." @@ -4497,7 +4479,7 @@ msgstr "No has bloqueado ese usuario." #: actions/unsandbox.php:72 msgid "User is not sandboxed." -msgstr "El usuario no está en la zona de pruebas." +msgstr "Al usuario no se le ha impuesto restricciones." #: actions/unsilence.php:72 msgid "User is not silenced." @@ -4856,7 +4838,7 @@ msgstr "No se pudo actualizar mensaje con nuevo URI." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" msgstr "Error de la BD al insertar la etiqueta clave: %s" @@ -5181,13 +5163,13 @@ msgstr "Licencia de software de StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #: lib/action.php:817 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" -"**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" -"site.broughtbyurl%%)." +"**%%site.name%%** es un servicio de microblogueo traido a ti por cortesía de " +"[%%site.broughtby%%**](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:820 @@ -5239,6 +5221,8 @@ msgstr "" #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" +"Todo el contenido%1$s y la información están disponibles bajo la licencia 2%" +"$s." #. TRANS: DT element for pagination (previous/next, etc.). #: lib/action.php:1182 @@ -5450,25 +5434,22 @@ msgstr "Cancelar" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" -msgstr "Solo escritura" +msgstr "lectura y escritura" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" -msgstr "Solo lectura" +msgstr "sólo lectura" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Aprobado el %1$s - acceso \"%2$s\"." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" @@ -5552,7 +5533,7 @@ msgstr "¡No tiene sentido darte un toque a ti mismo!" #: lib/command.php:234 #, php-format msgid "Nudge sent to %s" -msgstr "zumbido enviado a %s" +msgstr "Toque enviado a %s" #: lib/command.php:260 #, php-format @@ -5576,7 +5557,7 @@ msgstr "Ya eres parte de ese grupo" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "No se pudo unir el usuario %s al grupo %s" @@ -5584,8 +5565,8 @@ msgstr "No se pudo unir el usuario %s al grupo %s" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "No se pudo eliminar al usuario %s del grupo %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "No se pudo eliminar al usuario %1$s del grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 @@ -5625,9 +5606,11 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:472 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d" -msgstr "Mensaje muy largo - máximo %1$d caracteres, enviaste %2$d" +msgstr "" +"Mensaje muy largo - la cantidad máxima es de %1$d caracteres y has enviado %2" +"$d" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. @@ -5801,6 +5784,44 @@ msgid "" "tracks - not yet implemented.\n" "tracking - not yet implemented.\n" msgstr "" +"comandos:\n" +"activar - activar notificaciones\n" +"desactivar - desactivar notificaciones\n" +"ayuda - mostrar esta ayuda\n" +"seguir - suscribirse al usuario\n" +"grupos - listar los grupos que sigues\n" +"suscripciones - listar las personas que sigues\n" +"suscriptores - listar los grupos que te siguen\n" +"abandonar - cancelar la suscripción al usuario\n" +"d - dirigir mensaje al usuario\n" +"obtener - obtener último aviso del usuario\n" +"quienes - obtener información del perfil del usuario\n" +"bloquear - obligar al usuario a que deje de seguirte\n" +"fav - añadir el último aviso del usario a tus favoritos\n" +"fav # - añadir el aviso con el ID dado a tus favoritos\n" +"repetir # - repetir el aviso con el ID dado\n" +"repetir - repetir el último aviso del usuario\n" +"responder # - responder al aviso del ID dado\n" +"responder - responder al último aviso del usuario\n" +"unirse - unirse a un grupo\n" +"entrar - obtener un vínculo para iniciar sesión en la interfaz Web\n" +"abandonar - abandonar el grupo\n" +"estadísticas - obtener tus estadísticas\n" +"detener - igual que 'desactivar'\n" +"parar - igual que 'desactivar'\n" +"sus - igual que 'seguir'\n" +"desus - igual que 'abandonar'\n" +"último - igual que 'obtener'\n" +"activado - aún sin implementar.\n" +"desactivado - aún sin implementar.\n" +"toque - recordarle a un ausuario que actualice.\n" +"invitar - aún sin implementar.\n" +"rastrear - aún sin implementar.\n" +"no rastrear - aún sin implementar.\n" +"dejar de rastrear - aún sin implementar.\n" +"dejar de rastrear todos - aún sin implementar.\n" +"rastrear - aún sin implementar.\n" +"rastreando - aún sin implementar.\n" #: lib/common.php:135 msgid "No configuration file found. " @@ -5808,11 +5829,11 @@ msgstr "Ningún archivo de configuración encontrado. " #: lib/common.php:136 msgid "I looked for configuration files in the following places: " -msgstr "" +msgstr "He buscado archivos de configuración en los siguientes lugares: " #: lib/common.php:138 msgid "You may wish to run the installer to fix this." -msgstr "" +msgstr "Quizá desees ejecutar el instalador para solucionar este problema." #: lib/common.php:139 msgid "Go to the installer." @@ -5855,16 +5876,15 @@ msgstr "" #: lib/designsettings.php:418 msgid "Design defaults restored." -msgstr "" +msgstr "Diseño predeterminado restaurado." #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Sacar este aviso" #: lib/favorform.php:114 lib/favorform.php:140 -#, fuzzy msgid "Favor this notice" -msgstr "Aceptar este aviso" +msgstr "Incluir este aviso en tus favoritos" #: lib/favorform.php:140 msgid "Favor" @@ -5880,11 +5900,11 @@ msgstr "RSS 2.0" #: lib/feed.php:89 msgid "Atom" -msgstr "" +msgstr "Atom" #: lib/feed.php:91 msgid "FOAF" -msgstr "" +msgstr "Amistad de amistad" #: lib/feedlist.php:64 msgid "Export data" @@ -5892,7 +5912,7 @@ msgstr "Exportar datos" #: lib/galleryaction.php:121 msgid "Filter tags" -msgstr "Filtrar tags" +msgstr "Filtrar etiquetas" #: lib/galleryaction.php:131 msgid "All" @@ -5904,11 +5924,11 @@ msgstr "Seleccione una etiqueta a filtrar" #: lib/galleryaction.php:140 msgid "Tag" -msgstr "Tag" +msgstr "Etiqueta" #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" -msgstr "Elegir tag para reducir lista" +msgstr "Elegir una etiqueta para reducir la lista" #: lib/galleryaction.php:143 msgid "Go" @@ -5917,12 +5937,11 @@ msgstr "Ir" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Otorgar al usuario el papel de \"%$\"" #: lib/groupeditform.php:163 -#, fuzzy msgid "URL of the homepage or blog of the group or topic" -msgstr "El URL de página de inicio o blog del grupo or tema" +msgstr "URL de página de inicio o blog del grupo o tema" #: lib/groupeditform.php:168 msgid "Describe the group or topic" @@ -5944,6 +5963,7 @@ msgstr "" #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +"Nombres adicionales para el grupo, separados por comas o espacios. Máximo: %d" #: lib/groupnav.php:85 msgid "Group" @@ -5988,7 +6008,7 @@ msgstr "Grupos con más publicaciones" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "Tags en avisos del grupo %s" +msgstr "Etiquetas en avisos del grupo %s" #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 @@ -6040,7 +6060,7 @@ msgstr "[%s]" #: lib/jabber.php:567 #, php-format msgid "Unknown inbox source %d." -msgstr "" +msgstr "Origen de bandeja de entrada %d desconocido." #: lib/joinform.php:114 msgid "Join" @@ -6048,7 +6068,7 @@ msgstr "Unirse" #: lib/leaveform.php:114 msgid "Leave" -msgstr "Salir" +msgstr "Abandonar" #: lib/logingroupnav.php:80 msgid "Login with a username and password" @@ -6080,6 +6100,19 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"¡Hola, %s!\n" +"\n" +"Hace un momento, alguien introdujo esta dirección de correo electrónico en %" +"s.\n" +"\n" +"Si has sido tú y deseas confirmarlo, haz clic en el vínculo de abajo:\n" +"\n" +"%s\n" +"\n" +"Si no, simplemente ignora este mensaje.\n" +"\n" +"Gracias por tu tiempo, \n" +"%s\n" #. TRANS: Subject of new-subscriber notification e-mail #: lib/mail.php:243 @@ -6089,7 +6122,7 @@ msgstr "%1$s ahora está escuchando tus avisos en %2$s" #. TRANS: Main body of new-subscriber notification e-mail #: lib/mail.php:249 -#, fuzzy, php-format +#, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" "\n" @@ -6102,12 +6135,18 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" -"\t%1$s ahora está escuchando tus avisos en %2$s.\n" +"%1$s ahora está escuchando tus avisos en %2$s.\n" "\n" -"\t%3$s\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" "\n" "Atentamente,\n" -"%4$s.\n" +"\n" +"%7$s.\n" +"\n" +"----\n" +"Cambia tus preferencias de notificaciones a tu correo electrónico en %8$s\n" #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:269 @@ -6156,15 +6195,15 @@ msgstr "SMS confirmación" #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:457 -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "Esperando confirmación de este número de teléfono." +msgstr "%s: Confirma que este es tu número de teléfono mediante este código:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:478 #, php-format msgid "You've been nudged by %s" -msgstr "%s te mandó un zumbido " +msgstr "%s te ha dado un toque" #. TRANS: Body for 'nudge' notification email #: lib/mail.php:483 @@ -6219,6 +6258,20 @@ msgid "" "With kind regards,\n" "%5$s\n" msgstr "" +"%1$s (%2$s) Te ha enviado un mensaje privado:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Puedes responder a este mensaje aquí:\n" +"\n" +"%4$s\n" +"\n" +"No respondas a este correo electrónico. No llegará a ningún sitio.\n" +"\n" +"Saludos cordiales,\n" +"%5$s\n" #. TRANS: Subject for favorite notification email #: lib/mail.php:583 @@ -6247,6 +6300,22 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" +"%1$s (@%7$s) acaba de añadir un aviso de %2$s a su listado de favoritos.\n" +"\n" +"El URL de tu aviso es:\n" +"\n" +"%3$s\n" +"\n" +"El texto de tu aviso es:\n" +"\n" +"%4$s\n" +"\n" +"Puedes ver el listado de los favoritos de %1$s aquí:\n" +"\n" +"%5$s\n" +"\n" +"Saludos,\n" +"%6$s\n" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #: lib/mail.php:645 @@ -6256,11 +6325,14 @@ msgid "" "\n" "\t%s" msgstr "" +"La conversación completa puede leerse aquí:\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgstr "%s (@%s) ha enviado un aviso a tu atención" #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:654 @@ -6289,6 +6361,29 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%1$s (@%9$s) ha enviado un aviso a tu atención (una '@-respuesta') en %2$s.\n" +"\n" +"El anuncio está aquí:\n" +"\n" +"%3$s\n" +"\n" +"El anuncio dice:\n" +"\n" +"%4$s\n" +"\n" +"%5$sPuedes responder aquí:\n" +"\n" +"%6$s\n" +"\n" +"Aquí encontrarás un listado de todas las @-respuestas dirigidas a ti:\n" +"\n" +"%7$s\n" +"\n" +"Saludos,\n" +"%2$s\n" +"\n" +"P.D. Puedes desactivar las notificaciones que recibes en tu correo " +"electrónico aquí: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6299,6 +6394,9 @@ 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 "" +"No tienes mensajes privados. Puede enviar mensajes privados para hacer a " +"otros usuarios partícipes de la conversación. La gente puede enviarte " +"mensajes que sólo puedas leer tú." #: lib/mailbox.php:227 lib/noticelist.php:494 msgid "from" @@ -6366,7 +6464,7 @@ msgstr "Archivo sobrepasa la cuota del usuario." #: lib/mediafile.php:196 lib/mediafile.php:233 msgid "File could not be moved to destination directory." -msgstr "" +msgstr "El archivo no se pudo mover al directorio de destino." #: lib/mediafile.php:201 lib/mediafile.php:237 msgid "Could not determine file's MIME type." @@ -6483,15 +6581,15 @@ msgstr "Aviso repetido" #: lib/nudgeform.php:116 msgid "Nudge this user" -msgstr "Enviar zumbido a este usuario" +msgstr "Dar un toque a este usuario" #: lib/nudgeform.php:128 msgid "Nudge" -msgstr "Zumbido " +msgstr "Dar un toque a " #: lib/nudgeform.php:128 msgid "Send a nudge to this user" -msgstr "Enviar zumbido a este usuario" +msgstr "Dar un toque a este usuario" #: lib/oauthstore.php:283 msgid "Error inserting new profile" @@ -6548,7 +6646,7 @@ msgstr "Mensajes enviados" #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" -msgstr "Tags en avisos de %s" +msgstr "Etiquetas en avisos de %s" #: lib/plugin.php:114 msgid "Unknown" @@ -6601,7 +6699,7 @@ msgstr "Grupos de usuario" #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" -msgstr "Tags recientes" +msgstr "Etiquetas recientes" #: lib/publicgroupnav.php:88 msgid "Featured" @@ -6638,12 +6736,11 @@ msgstr "Ningún usuario sólo definido para modo monousuario." #: lib/sandboxform.php:67 msgid "Sandbox" -msgstr "Cajón de sastre" +msgstr "Restringir" #: lib/sandboxform.php:78 -#, fuzzy msgid "Sandbox this user" -msgstr "Desbloquear este usuario" +msgstr "Imponer restricciones a este usuario" #: lib/searchaction.php:120 msgid "Search site" @@ -6687,14 +6784,14 @@ msgstr "Más..." #: lib/silenceform.php:67 msgid "Silence" -msgstr "Silencio" +msgstr "Silenciar" #: lib/silenceform.php:78 msgid "Silence this user" -msgstr "Silenciar este usuario" +msgstr "Silenciar a este usuario" #: lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to" msgstr "Personas a las que %s está suscrito" @@ -6720,12 +6817,12 @@ msgstr "Invita a amigos y colegas a unirse a %s" #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" -msgstr "" +msgstr "Nube de etiquetas de personas auto-etiquetadas" #: lib/subscriberspeopletagcloudsection.php:48 #: lib/subscriptionspeopletagcloudsection.php:48 msgid "People Tagcloud as tagged" -msgstr "" +msgstr "Nube de etiquetas de personas etiquetadas" #: lib/tagcloudsection.php:56 msgid "None" @@ -6737,21 +6834,19 @@ msgstr "Principales posteadores" #: lib/unsandboxform.php:69 msgid "Unsandbox" -msgstr "" +msgstr "Eliminar restricciones" #: lib/unsandboxform.php:80 -#, fuzzy msgid "Unsandbox this user" -msgstr "Desbloquear este usuario" +msgstr "Eliminar restricciones impuestas a este usuario" #: lib/unsilenceform.php:67 msgid "Unsilence" -msgstr "" +msgstr "Dejar de silenciar" #: lib/unsilenceform.php:78 -#, fuzzy msgid "Unsilence this user" -msgstr "Desbloquear este usuario" +msgstr "Dejar de silenciar este usuario" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" @@ -6762,9 +6857,9 @@ msgid "Unsubscribe" msgstr "Cancelar suscripción" #: lib/usernoprofileexception.php:58 -#, fuzzy, php-format +#, php-format msgid "User %s (%d) has no profile record." -msgstr "El usuario no tiene un perfil." +msgstr "El usuario %s (%d) no tiene un registro de su perfil." #: lib/userprofile.php:117 msgid "Edit Avatar" @@ -6776,7 +6871,7 @@ msgstr "Acciones de usuario" #: lib/userprofile.php:237 msgid "User deletion in progress..." -msgstr "" +msgstr "Eliminación de usuario en curso..." #: lib/userprofile.php:263 msgid "Edit profile settings" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 00af27de49..300f8a602c 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-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:39+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:42+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title @@ -5463,7 +5463,7 @@ msgstr "شما از پیش یک عضو این گروه هستید." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "عضویت %s در گروه %s نا موفق بود." @@ -5471,7 +5471,7 @@ msgstr "عضویت %s در گروه %s نا موفق بود." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "خارج شدن %s از گروه %s نا موفق بود" #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index c016316071..9020ccaeb7 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:36+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:39+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5658,7 +5658,7 @@ msgstr "Sinä kuulut jo tähän ryhmään." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." @@ -5666,7 +5666,7 @@ msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 1aafddc3ad..1d2bbcdaed 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,12 +14,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:42+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:46+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -854,7 +854,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "Non" @@ -873,7 +872,6 @@ msgstr "Ne pas bloquer cet utilisateur" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Oui" @@ -1376,7 +1374,6 @@ msgstr "Adresse courriel actuellement confirmée." #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "Retirer" @@ -1395,7 +1392,6 @@ msgstr "" #. TRANS: Button label #: actions/emailsettings.php:127 actions/imsettings.php:131 #: actions/smssettings.php:137 lib/applicationeditform.php:357 -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Annuler" @@ -1410,7 +1406,6 @@ msgstr "Adresse de courriel (ex : nom@example.org)" #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Ajouter" @@ -1436,16 +1431,14 @@ msgstr "Nouvelle adresse courriel pour poster ; annule l’ancienne." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "Nouveau" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Préférences" +msgstr "Préférences de courrier électronique" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1486,9 +1479,8 @@ msgstr "Publier un MicroID pour mon adresse courriel." #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "Préférences de conception enregistrées." +msgstr "Préférences de courrier électronique enregistrées." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1543,15 +1535,13 @@ msgstr "Aucune confirmation à annuler." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "Cette adresse de messagerie instantanée est erronée." +msgstr "Cette adresse de messagerie électronique est erronée." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Confirmation annulée." +msgstr "Courrier électronique de confirmation annulé." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1561,9 +1551,8 @@ msgstr "Ceci n’est pas votre adresse courriel." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "L’adresse a été supprimée." +msgstr "L’adresse électronique a été supprimée." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -2028,9 +2017,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Préférences" +msgstr "Préférences de messagerie instantanée" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2103,15 +2091,13 @@ msgstr "Cette adresse de messagerie instantanée est erronée." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "Impossible de supprimer le courriel de confirmation." +msgstr "Impossible de supprimer la confirmation de messagerie instantanée." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Confirmation annulée." +msgstr "Confirmation de messagerie instantanée annulée." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2121,9 +2107,8 @@ msgstr "Ceci n’est pas votre identifiant Jabber." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "L’adresse a été supprimée." +msgstr "L’adresse de messagerie instantanée a été supprimée." #: actions/inbox.php:59 #, php-format @@ -4131,9 +4116,8 @@ msgstr "Les SMS ne sont pas disponibles." #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "Adresse de messagerie instantanée" +msgstr "Adresse SMS" #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 @@ -4157,7 +4141,6 @@ msgstr "Entrez le code que vous avez reçu sur votre téléphone." #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" msgstr "Confirmer" @@ -4175,9 +4158,8 @@ msgstr "" #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "Préférences" +msgstr "Préférences pour les SMS" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4190,9 +4172,8 @@ msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "Préférences enregistrées" +msgstr "Préférences pour les SMS enregistrées." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 @@ -4231,9 +4212,8 @@ msgstr "Ce code de confirmation est incorrect." #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 -#, fuzzy msgid "SMS confirmation cancelled." -msgstr "Confirmation annulée." +msgstr "Confirmation de SMS annulée." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -4243,9 +4223,8 @@ msgstr "Ceci n’est pas votre numéro de téléphone." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "Numéro de téléphone pour les SMS" +msgstr "Le numéro de téléphone pour les SMS a été retiré." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 @@ -4297,7 +4276,6 @@ msgid "Invalid snapshot report URL." msgstr "URL de rapport d’instantanés invalide." #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" msgstr "Au hasard lors des requêtes web" @@ -4891,7 +4869,7 @@ msgstr "Impossible de mettre à jour le message avec un nouvel URI." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s" @@ -5485,25 +5463,22 @@ msgstr "Annuler" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" -msgstr "Lecture-écriture" +msgstr "lecture-écriture" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" -msgstr "Lecture seule" +msgstr "lecture seule" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Accès « %2$s » approuvé le %1$s." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Révoquer" @@ -5610,16 +5585,16 @@ msgstr "Vous êtes déjà membre de ce groupe" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" -msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." +msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Impossible de retirer l’utilisateur %s du groupe %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Impossible de retirer l’utilisateur %1$s du groupe %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 @@ -5659,7 +5634,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:472 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" "Message trop long ! La taille maximale est de %1$d caractères ; vous en avez " diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 93e4bb6580..7504570c15 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-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:45+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:50+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5729,7 +5729,7 @@ msgstr "Non podes seguir a este usuario: o Usuario non se atopa." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Non podes seguir a este usuario: o Usuario non se atopa." #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 30bf985760..a63edfbb07 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:48+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:53+0000\n" "Language-Team: Galician\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64943); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: out-statusnet\n" @@ -86,9 +86,8 @@ msgstr "Gardar" #. 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 -#, fuzzy msgid "No such page." -msgstr "Non existe tal páxina" +msgstr "Esa páxina non existe." #: actions/all.php:75 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -238,13 +237,12 @@ msgid "This method requires a POST." msgstr "Este método require un POST." #: actions/apiaccountupdatedeliverydevice.php:105 -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "Ten que especificar un parámetro chamado \"device\" cun destes valores: sms, " -"im, none" +"im, none." #: actions/apiaccountupdatedeliverydevice.php:132 msgid "Could not update user." @@ -446,9 +444,9 @@ msgid "Too many aliases! Maximum %d." msgstr "Demasiados pseudónimos! O número máximo é %d." #: actions/apigroupcreate.php:266 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "Pseudónimo inválido: \"%s\"" +msgstr "Pseudónimo incorrecto: \"%s\"." #: actions/apigroupcreate.php:275 actions/editgroup.php:232 #: actions/newgroup.php:172 @@ -464,9 +462,8 @@ msgstr "O pseudónimo non pode coincidir co alcume." #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 -#, fuzzy msgid "Group not found." -msgstr "Non se atopou o grupo!" +msgstr "Non se atopou o grupo." #: actions/apigroupjoin.php:110 actions/joingroup.php:100 msgid "You are already a member of that group." @@ -846,7 +843,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "Non" @@ -865,7 +861,6 @@ msgstr "Non bloquear este usuario" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -921,9 +916,9 @@ msgstr "Desbloquear este usuario" #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "Publicar en " +msgstr "Publicar en %s" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -939,9 +934,9 @@ msgstr "Ese código de confirmación non é para vostede!" #. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. #: actions/confirmaddress.php:91 -#, fuzzy, php-format +#, php-format msgid "Unrecognized address type %s." -msgstr "Non se recoñeceu o tipo de enderezo %s" +msgstr "Non se recoñeceu o tipo de enderezo %s." #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 @@ -1112,9 +1107,9 @@ msgid "Invalid logo URL." msgstr "URL do logo incorrecto." #: actions/designadminpanel.php:280 -#, fuzzy, php-format +#, php-format msgid "Theme not available: %s." -msgstr "O tema visual non está dispoñible: %s" +msgstr "O tema visual non está dispoñible: %s." #: actions/designadminpanel.php:376 msgid "Change logo" @@ -1368,7 +1363,6 @@ msgstr "Enderezo de correo electrónico confirmado actualmente." #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "Borrar" @@ -1387,7 +1381,6 @@ msgstr "" #. TRANS: Button label #: actions/emailsettings.php:127 actions/imsettings.php:131 #: actions/smssettings.php:137 lib/applicationeditform.php:357 -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1402,7 +1395,6 @@ msgstr "Enderezo de correo electrónico, coma \"nomedeusuario@example.org\"" #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Engadir" @@ -1431,16 +1423,14 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "Novo" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Preferencias" +msgstr "Preferencias de correo electrónico" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1483,9 +1473,8 @@ msgstr "Publicar unha MicroID para o meu enderezo de correo electrónico." #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "Gardáronse as preferencias de deseño." +msgstr "Gardáronse as preferencias de correo electrónico." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1541,15 +1530,13 @@ msgstr "Non hai ningunha confirmación pendente que cancelar." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "Ese enderezo de mensaxería instantánea é incorrecto." +msgstr "Ese enderezo de correo electrónico é incorrecto." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Cancelouse a confirmación." +msgstr "Cancelouse a confirmación por correo electrónico." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1559,9 +1546,8 @@ msgstr "Ese non é o seu enderezo de correo electrónico." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "Borrouse o enderezo." +msgstr "Borrouse o enderezo de correo electrónico." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -1698,9 +1684,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB." #: actions/finishremotesubscribe.php:138 -#, fuzzy msgid "Error updating remote profile." -msgstr "Houbo un erro ao actualizar o perfil remoto" +msgstr "Houbo un erro ao actualizar o perfil remoto." #: actions/getfile.php:79 msgid "No such file." @@ -1905,7 +1890,7 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" msgstr "" -"Os grupos de %%%%site.name%%%% permiten atopar e pórse en contacto con " +"Os grupos de %%%%site.name%%%% permiten atopar e porse en contacto con " "persoas de intereses similares aos seus. Tras unirse a un grupo pode enviar " "mensaxes a todos os membros utilizando a sintaxe \"!nomedogrupo\". Non atopa " "un grupo que lle guste? Probe a [buscar un](%%%%action.groupsearch%%%%) ou " @@ -2020,9 +2005,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Preferencias" +msgstr "Preferencias de mensaxería instantánea" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2094,15 +2078,13 @@ msgstr "Ese enderezo de mensaxería instantánea é incorrecto." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "Non se puido borrar a confirmación por correo electrónico." +msgstr "Non se puido borrar a confirmación por mensaxería instantánea." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Cancelouse a confirmación." +msgstr "Cancelouse a confirmación por mensaxería instantánea." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2112,9 +2094,8 @@ msgstr "Esa ID de Jabber non é súa." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "Borrouse o enderezo." +msgstr "Borrouse o enderezo de mensaxería instantánea." #: actions/inbox.php:59 #, php-format @@ -2136,9 +2117,9 @@ msgid "Invites have been disabled." msgstr "As invitacións están desactivadas." #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "Ten que identificarse para invitar a outros a usar %s" +msgstr "Ten que identificarse para invitar a outros a usar %s." #: actions/invite.php:72 #, php-format @@ -2378,9 +2359,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "Non se pode converter a %1$s en administrador do grupo %2$s." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "Sen estado actual" +msgstr "Sen estado actual." #: actions/newapplication.php:52 msgid "New Application" @@ -2544,9 +2524,9 @@ msgid "You are not a user of that application." msgstr "Non é usuario desa aplicación." #: actions/oauthconnectionssettings.php:186 -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for app: %s." -msgstr "Non se puido revogar o acceso da aplicación: " +msgstr "Non se puido revogar o acceso da aplicación: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." @@ -2559,9 +2539,8 @@ msgstr "" "aplicacións " #: actions/oembed.php:79 actions/shownotice.php:100 -#, fuzzy msgid "Notice has no profile." -msgstr "Non hai perfil para a nota" +msgstr "Non hai perfil para a nota." #: actions/oembed.php:86 actions/shownotice.php:175 #, php-format @@ -2570,15 +2549,15 @@ msgstr "Estado de %1$s en %2$s" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:158 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "tipo de contido " +msgstr "Non se soporta o tipo de contido %s." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:162 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "" +msgstr "Só %s enderezos URL sobre HTTP simple." #. TRANS: Client error on an API request with an unsupported data format. #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1069 @@ -2734,24 +2713,24 @@ msgid "Path and server settings for this StatusNet site." msgstr "Configuración do servidor e das rutas para este sitio StatusNet." #: actions/pathsadminpanel.php:157 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Non se pode ler o directorio de temas visuais: %s" +msgstr "Non se pode ler o directorio de temas visuais: %s." #: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Non se pode escribir no directorio de avatares: %s" +msgstr "Non se pode escribir no directorio de avatares: %s." #: actions/pathsadminpanel.php:169 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Non se pode escribir no directorio de fondos: %s" +msgstr "Non se pode escribir no directorio de fondos: %s." #: actions/pathsadminpanel.php:177 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Non se pode ler o directorio de traducións: %s" +msgstr "Non se pode ler o directorio de traducións: %s." #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2891,9 +2870,9 @@ msgid "People search" msgstr "Busca de xente" #: actions/peopletag.php:68 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s." -msgstr "A etiqueta de persoa non é correcta: %s" +msgstr "A etiqueta de persoa non é correcta: %s." #: actions/peopletag.php:142 #, php-format @@ -2901,9 +2880,8 @@ msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" #: actions/postnotice.php:95 -#, fuzzy msgid "Invalid notice content." -msgstr "O contido da nota é incorrecto" +msgstr "O contido da nota é incorrecto." #: actions/postnotice.php:101 #, php-format @@ -3052,9 +3030,9 @@ msgid "Settings saved." msgstr "Gardouse a configuración." #: actions/public.php:83 -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "Alén do límite da páxina (%s)" +msgstr "Alén do límite da páxina (%s)." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -3134,16 +3112,16 @@ msgstr "Nube de etiquetas públicas" #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " -msgstr "" +msgstr "Estas son as etiquetas máis populares en %s " #: actions/publictagcloud.php:69 #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" +msgstr "Ninguén publicou aínda ningunha nota cunha [etiqueta](%%doc.tags%%)." #: actions/publictagcloud.php:72 msgid "Be the first to post one!" -msgstr "" +msgstr "Sexa o primeiro en publicar unha!" #: actions/publictagcloud.php:75 #, php-format @@ -3151,194 +3129,211 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" msgstr "" +"Por que non [rexistrar unha conta](%%action.register%%) e ser o primeiro en " +"publicar unha?" #: actions/publictagcloud.php:134 msgid "Tag cloud" -msgstr "" +msgstr "Nube de etiquetas" #: actions/recoverpassword.php:36 msgid "You are already logged in!" -msgstr "" +msgstr "Xa está identificado!" #: actions/recoverpassword.php:62 msgid "No such recovery code." -msgstr "" +msgstr "Ese código de recuperación non existe." #: actions/recoverpassword.php:66 msgid "Not a recovery code." -msgstr "" +msgstr "Iso non é un código de recuperación." #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." -msgstr "" +msgstr "Código de recuperación para un usuario descoñecido." #: actions/recoverpassword.php:86 msgid "Error with confirmation code." -msgstr "" +msgstr "Houbo un erro co código de confirmación." #: actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." -msgstr "" +msgstr "Este código de confirmación é vello de máis. Volva empezar." #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." msgstr "" +"Non se puido actualizar o usuario co enderezo de correo electrónico " +"confirmado." #: 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 "" +"Se esqueceu ou perdeu o seu contrasinal, pode solicitar que se lle envíe un " +"novo ao enderezo de correo electrónico da conta." #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " -msgstr "" +msgstr "Acaba de identificarse. Introduza un contrasinal novo a continuación. " #: actions/recoverpassword.php:188 msgid "Password recovery" -msgstr "" +msgstr "Recuperación do contrasinal" #: actions/recoverpassword.php:191 msgid "Nickname or email address" -msgstr "" +msgstr "Alcume ou enderezo de correo electrónico" #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" +"O seu alcume neste servidor, ou o enderezo de correo electrónico co que se " +"rexistrou." #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" -msgstr "" +msgstr "Recuperar" #: actions/recoverpassword.php:208 msgid "Reset password" -msgstr "" +msgstr "Restablecer o contrasinal" #: actions/recoverpassword.php:209 msgid "Recover password" -msgstr "" +msgstr "Recuperar o contrasinal" #: actions/recoverpassword.php:210 actions/recoverpassword.php:335 msgid "Password recovery requested" -msgstr "" +msgstr "Solicitouse a recuperación do contrasinal" #: actions/recoverpassword.php:213 msgid "Unknown action" -msgstr "" +msgstr "Non se coñece esa acción" #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" -msgstr "" +msgstr "Seis ou máis caracteres, e non o esqueza!" #: actions/recoverpassword.php:243 msgid "Reset" -msgstr "" +msgstr "Restablecer" #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." -msgstr "" +msgstr "Introduza un alcume ou enderezo de correo electrónico." #: actions/recoverpassword.php:282 msgid "No user with that email address or username." msgstr "" +"Non hai ningún usuario con ese enderezo de correo electrónico ou alcume." #: actions/recoverpassword.php:299 msgid "No registered email address for that user." msgstr "" +"Non se rexistrou ningún enderezo de correo electrónico para ese usuario." #: actions/recoverpassword.php:313 msgid "Error saving address confirmation." -msgstr "" +msgstr "Houbo un erro ao gardar a confirmación do enderezo." #: actions/recoverpassword.php:338 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" +"Enviáronse instrucións para a recuperación do seu contrasinal ao enderezo de " +"correo electrónico rexistrado para a súa conta." #: actions/recoverpassword.php:357 msgid "Unexpected password reset." -msgstr "" +msgstr "Restablecemento de contrasinal inesperado." #: actions/recoverpassword.php:365 msgid "Password must be 6 chars or more." -msgstr "" +msgstr "O contrasinal debe ter seis ou máis caracteres." #: actions/recoverpassword.php:369 msgid "Password and confirmation do not match." -msgstr "" +msgstr "O contrasinal e a confirmación non coinciden." #: actions/recoverpassword.php:388 actions/register.php:248 msgid "Error setting user." -msgstr "" +msgstr "Houbo un erro ao configurar o usuario." #: actions/recoverpassword.php:395 msgid "New password successfully saved. You are now logged in." -msgstr "" +msgstr "O novo contrasinal gardouse correctamente. Agora está identificado." #: actions/register.php:85 actions/register.php:189 actions/register.php:405 msgid "Sorry, only invited people can register." -msgstr "" +msgstr "Só se pode rexistrar mediante invitación." #: actions/register.php:92 msgid "Sorry, invalid invitation code." -msgstr "" +msgstr "O código da invitación é incorrecto." #: actions/register.php:112 msgid "Registration successful" -msgstr "" +msgstr "Rexistrouse correctamente" #: actions/register.php:114 actions/register.php:507 lib/logingroupnav.php:85 msgid "Register" -msgstr "" +msgstr "Rexistrarse" #: actions/register.php:135 msgid "Registration not allowed." -msgstr "" +msgstr "Non se permite o rexistro." #: actions/register.php:198 msgid "You can't register if you don't agree to the license." -msgstr "" +msgstr "Non pode rexistrarse se non acepta a licenza." #: actions/register.php:212 msgid "Email address already exists." -msgstr "" +msgstr "O enderezo de correo electrónico xa existe." #: actions/register.php:243 actions/register.php:265 msgid "Invalid username or password." -msgstr "" +msgstr "O nome de usuario ou contrasinal non son correctos." #: 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 "" +"Con este formulario pode crear unha conta nova. Entón poderá publicar notas " +"e porse en contacto con amigos e compañeiros. " #: actions/register.php:425 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" +"Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " +"espazos, tiles ou eñes. Obrigatorio." #: actions/register.php:430 msgid "6 or more characters. Required." -msgstr "" +msgstr "6 ou máis caracteres. Obrigatorio." #: actions/register.php:434 msgid "Same as password above. Required." -msgstr "" +msgstr "O mesmo contrasinal que o anterior. Obrigatorio." #. TRANS: Link description in user account settings menu. #: actions/register.php:438 actions/register.php:442 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 msgid "Email" -msgstr "" +msgstr "Correo electrónico" #: actions/register.php:439 actions/register.php:443 msgid "Used only for updates, announcements, and password recovery" msgstr "" +"Só se utiliza para actualizacións, anuncios e recuperación de contrasinais" #: actions/register.php:450 msgid "Longer name, preferably your \"real\" name" -msgstr "" +msgstr "Nome longo, preferiblemente o seu nome \"real\"" #: actions/register.php:494 #, php-format @@ -3346,6 +3341,9 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +"Os meus textos e ficheiros están dispoñibles baixo %s, salvo os seguintes " +"datos privados: contrasinais, enderezos de correo electrónico e mensaxería " +"instantánea e números de teléfono." #: actions/register.php:542 #, php-format @@ -3365,12 +3363,27 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" +"Parabéns, %1$s! E benvido a %%%%site.name%%%%. Agora quizais queira...\n" +"\n" +"* Ir ao [seu perfil](%2$s) e publicar a súa primeira mensaxe.\n" +"* Engadir un [enderezo de Jabber ou GTalk](%%%%action.imsettings%%%%) para " +"poder enviar notas por medio de mensaxes instantáneas.\n" +"* [Buscar xente](%%%%action.peoplesearch%%%%) que coñeza ou que comparta os " +"seus intereses. \n" +"* Actualizar a [configuración do seu perfil](%%%%action.profilesettings%%%%) " +"para que os outros saiban máis de vostede. \n" +"* Botar unha ollada á [documentación en liña](%%%%doc.help%%%%) en busca de " +"funcionalidades que ao mellor non coñecía. \n" +"\n" +"Grazas por rexistrarse. Esperamos que goce deste servizo." #: actions/register.php:566 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" +"(Debería recibir unha mensaxe por correo electrónico nuns intres, con " +"instrucións para a confirmación do seu enderezo de correo electrónico.)" #: actions/remotesubscribe.php:98 #, php-format @@ -3379,101 +3392,107 @@ msgid "" "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" +"Para subscribirse, pode [identificarse](%%action.login%%) ou [rexistrar](%%" +"action.register%%) unha conta nova. Se xa ten unha conta nun [sitio de " +"microblogging compatible](%%doc.openmublog%%), introduza a continuación o " +"URL do seu perfil." #: actions/remotesubscribe.php:112 msgid "Remote subscribe" -msgstr "" +msgstr "Subscribirse remotamente" #: actions/remotesubscribe.php:124 msgid "Subscribe to a remote user" -msgstr "" +msgstr "Subscribirse a un usuario remoto" #: actions/remotesubscribe.php:129 msgid "User nickname" -msgstr "" +msgstr "Alcume do usuario" #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "" +msgstr "Alcume do usuario ao que quere seguir" #: actions/remotesubscribe.php:133 msgid "Profile URL" -msgstr "" +msgstr "URL do perfil" #: actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" -msgstr "" +msgstr "URL do seu perfil noutro servizo de microblogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: lib/userprofile.php:406 msgid "Subscribe" -msgstr "" +msgstr "Subscribirse" #: actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" -msgstr "" +msgstr "O enderezo URL do perfil é incorrecto (formato erróneo)" #: actions/remotesubscribe.php:168 msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." msgstr "" +"Non é un URL de perfil correcto (non hai un documento YADIS ou definiuse un " +"XRDS incorrecto)." #: actions/remotesubscribe.php:176 msgid "That’s a local profile! Login to subscribe." -msgstr "" +msgstr "Ese é un perfil local! Identifíquese para subscribirse." #: actions/remotesubscribe.php:183 msgid "Couldn’t get a request token." -msgstr "" +msgstr "Non se puido obter o pase solicitado." #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." -msgstr "" +msgstr "Só os usuarios identificados poden repetir notas." #: actions/repeat.php:64 actions/repeat.php:71 msgid "No notice specified." -msgstr "" +msgstr "Non se especificou nota ningunha." #: actions/repeat.php:76 msgid "You can't repeat your own notice." -msgstr "" +msgstr "Non pode repetir a súa propia nota." #: actions/repeat.php:90 msgid "You already repeated that notice." -msgstr "" +msgstr "Xa repetiu esa nota." #: actions/repeat.php:114 lib/noticelist.php:675 msgid "Repeated" -msgstr "" +msgstr "Repetida" #: actions/repeat.php:119 msgid "Repeated!" -msgstr "" +msgstr "Repetida!" #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" -msgstr "" +msgstr "Respostas a %s" #: actions/replies.php:128 #, php-format msgid "Replies to %1$s, page %2$d" -msgstr "" +msgstr "Respostas a %1$s, páxina %2$d" #: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" -msgstr "" +msgstr "Fonte de novas coas respostas a %s (RSS 1.0)" #: actions/replies.php:152 #, php-format msgid "Replies feed for %s (RSS 2.0)" -msgstr "" +msgstr "Fonte de novas coas respostas a %s (RSS 2.0)" #: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" -msgstr "" +msgstr "Fonte de novas coas respostas a %s (Atom)" #: actions/replies.php:199 #, php-format @@ -3481,6 +3500,8 @@ msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to his attention yet." msgstr "" +"Esta é a liña do tempo coas respostas a %1$s, pero a %2$s aínda non lle " +"mandaron ningunha nota." #: actions/replies.php:204 #, php-format @@ -5433,7 +5454,7 @@ msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "O usuario %1$s non se puido eliminar do grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 296330eb63..05d4087815 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:52+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48:56+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5564,7 +5564,7 @@ msgstr "נכשלה ההפניה לשרת: %s" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "נכשלה יצירת OpenID מתוך: %s" #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 3944af266b..dc063eec9d 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-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:55+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:48: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 (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5270,7 +5270,7 @@ msgstr "Sy hižo čłon teje skupiny" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." @@ -5278,8 +5278,8 @@ msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Njebě móžno wužiwarja %s do skupiny %s přesunyć" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Njebě móžno wužiwarja %1$s ze skupiny %2$s wotstronić." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 1137731c78..cda28819e8 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:43:58+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:04+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5563,7 +5563,7 @@ msgstr "Tu es ja membro de iste gruppo" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." @@ -5571,8 +5571,8 @@ msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Non poteva remover le usator %s del gruppo %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Non poteva remover le usator %1$s del gruppo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 49e737db85..731a948685 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-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:02+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:07+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5614,7 +5614,7 @@ msgstr "Gat ekki bætt notandanum %s í hópinn %s" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index ba89872996..b3aa969ae5 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:12+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:10+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5549,7 +5549,7 @@ msgstr "Fai già parte di quel gruppo" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." @@ -5557,8 +5557,8 @@ msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %2$s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 91c8459211..d70e8262de 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:15+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:13+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5583,7 +5583,7 @@ msgstr "あなたは既にそのグループに参加しています。" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "ユーザ %1$s はグループ %2$s に参加できません。" @@ -5591,8 +5591,8 @@ msgstr "ユーザ %1$s はグループ %2$s に参加できません。" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "ユーザ %s をグループ %s から削除することができません" +msgid "Could not remove user %1$s from group %2$s" +msgstr "ユーザ %1$s をグループ %2$s から削除できません。" #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 7df910a59f..cdd7d77a57 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:18+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:16+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5581,7 +5581,7 @@ msgstr "당신은 이미 이 그룹의 멤버입니다." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." @@ -5589,7 +5589,7 @@ msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 0a920ba8bd..0d377eefaa 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:21+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:19+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -844,7 +844,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "Не" @@ -863,7 +862,6 @@ msgstr "Не го блокирај корисников" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1366,7 +1364,6 @@ msgstr "Тековна потврдена е-поштенска адреса." #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "Отстрани" @@ -1385,7 +1382,6 @@ msgstr "" #. TRANS: Button label #: actions/emailsettings.php:127 actions/imsettings.php:131 #: actions/smssettings.php:137 lib/applicationeditform.php:357 -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" @@ -1400,7 +1396,6 @@ msgstr "Е-пошта, од обликот „UserName@example.org“" #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Додај" @@ -1427,16 +1422,14 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" -msgstr "Ново" +msgstr "Нова" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Нагодувања" +msgstr "Нагодувања за е-пошта" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1477,9 +1470,8 @@ msgstr "Објави MicroID за мојата е-поштенска адрес #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "Нагодувањата се зачувани." +msgstr "Нагодувањата за е-пошта се зачувани." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1535,15 +1527,13 @@ msgstr "Нема потврди кои може да се откажат." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "Ова е погрешната IM адреса." +msgstr "Ова е погрешна е-поштенска адреса." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Потврдата е откажана" +msgstr "Потврдата на е-пошта е откажана." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1553,9 +1543,8 @@ msgstr "Ова не е Вашата е-поштенска адреса." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "Адресата е отстранета." +msgstr "Е-поштенската адреса е отстранета." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -2018,9 +2007,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Нагодувања" +msgstr "IM нагодувања" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2091,15 +2079,13 @@ msgstr "Ова е погрешната IM адреса." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "Не можев да ја избришам потврдата по е-пошта." +msgstr "Не можев да ја избришам потврдата на IM." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Потврдата е откажана" +msgstr "Потврдата на IM е откажана." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2109,9 +2095,8 @@ msgstr "Ова не е Вашиот Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "Адресата е отстранета." +msgstr "IM-адресата е отстранета." #: actions/inbox.php:59 #, php-format @@ -4104,9 +4089,8 @@ msgstr "СМС-пораките се недостапни." #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "IM адреса" +msgstr "СМС адреса" #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 @@ -4130,7 +4114,6 @@ msgstr "Внесете го кодот што го добивте по теле #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" msgstr "Потврди" @@ -4148,9 +4131,8 @@ msgstr "" #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "Нагодувања" +msgstr "СМС нагодувања" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4163,9 +4145,8 @@ msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "Нагодувањата се зачувани." +msgstr "СМС нагодувањата се зачувани." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 @@ -4203,9 +4184,8 @@ msgstr "Ова е погрешен потврден број." #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 -#, fuzzy msgid "SMS confirmation cancelled." -msgstr "Потврдата е откажана" +msgstr "Потврдата за СМС е откажана." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -4215,9 +4195,8 @@ msgstr "Тоа не е Вашиот телефонски број." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "Телефонски број за СМС" +msgstr "Телефонскиот број за СМС е отстранет." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 @@ -4268,7 +4247,6 @@ msgid "Invalid snapshot report URL." msgstr "Неважечки URL за извештај од снимката." #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" msgstr "По случајност во текот на посета" @@ -4857,9 +4835,9 @@ msgstr "Не можев да ја подновам пораката со нов #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" -msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознака: %s" +msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознаката: %s" #: classes/Notice.php:245 msgid "Problem saving notice. Too long." @@ -5450,25 +5428,22 @@ msgstr "Откажи" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" -msgstr "Читање-пишување" +msgstr "читање-пишување" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" -msgstr "Само читање" +msgstr "само читање" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Одобрено %1$s - „%2$s“ пристап." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Одземи" @@ -5575,16 +5550,16 @@ msgstr "Веќе членувате во таа група" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" -msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s." +msgstr "Не можев да го зачленам корисникот %1$s во групата %2$s" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Не можев да го отстранам корисникот %s од групата %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Не можев да го отстранам корисникот %1$s од групата %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 @@ -5624,10 +5599,10 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:472 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -"Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2$d." +"Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2$d" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 8d88760286..178ed2de86 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:25+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:23+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 (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5441,7 +5441,7 @@ msgstr "Du er allerede medlem av den gruppen." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." @@ -5449,8 +5449,8 @@ msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Kunne ikke fjerne brukeren %s fra gruppen %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Kunne ikke fjerne bruker %1$s fra gruppe %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index b88ce26d6f..41318c9852 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:31+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:31+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -853,7 +853,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "Nee" @@ -872,7 +871,6 @@ msgstr "Gebruiker niet blokkeren" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1376,7 +1374,6 @@ msgstr "Huidige bevestigde e-mailadres" #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "Verwijderen" @@ -1409,7 +1406,6 @@ msgstr "E-mailadres, zoals \"gebruikersnaam@example.org\"" #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Toevoegen" @@ -1437,16 +1433,14 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "Nieuw" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Voorkeuren" +msgstr "E-mailvoorkeuren" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1485,9 +1479,8 @@ msgstr "Een MicroID voor mijn e-mailadres publiceren." #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "De ontwerpvoorkeuren zijn opgeslagen." +msgstr "De e-mailvoorkeuren zijn opgeslagen." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1543,15 +1536,13 @@ msgstr "Er is geen openstaand bevestigingsverzoek om te annuleren." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "Dat is het verkeerde IM-adres." +msgstr "Dat is het verkeerde e-mailadres." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Bevestiging geannuleerd." +msgstr "E-mailbevestiging geannuleerd." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1561,9 +1552,8 @@ msgstr "Dit is niet uw e-mailadres." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "Het adres is verwijderd." +msgstr "Het e-mailadres is verwijderd." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -2032,9 +2022,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Voorkeuren" +msgstr "IM-voorkeuren" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2106,15 +2095,13 @@ msgstr "Dat is het verkeerde IM-adres." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "De e-mailbevestiging kon niet verwijderd worden." +msgstr "De IM-bevestiging kon niet verwijderd worden." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Bevestiging geannuleerd." +msgstr "IM-bevestiging geannuleerd." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2124,9 +2111,8 @@ msgstr "Dit is niet uw Jabber-ID." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "Het adres is verwijderd." +msgstr "Het IM-adres is verwijderd." #: actions/inbox.php:59 #, php-format @@ -4131,9 +4117,8 @@ msgstr "SMS is niet beschikbaar." #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "IM-adres" +msgstr "SMS-adres" #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 @@ -4157,7 +4142,6 @@ msgstr "Voer de code in die u via uw telefoon hebt ontvangen." #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" msgstr "Bevestigen" @@ -4174,9 +4158,8 @@ msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer" #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "Voorkeuren" +msgstr "SMS-voorkeuren" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4189,9 +4172,8 @@ msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "Uw voorkeuren zijn opgeslagen." +msgstr "Uw SMS-voorkeuren zijn opgeslagen." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 @@ -4229,9 +4211,8 @@ msgstr "Dit is het verkeerde bevestigingsnummer." #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 -#, fuzzy msgid "SMS confirmation cancelled." -msgstr "Bevestiging geannuleerd." +msgstr "SMS-bevestiging geannuleerd." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -4241,9 +4222,8 @@ msgstr "Dit is niet uw telefoonnummer." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "SMS-nummer" +msgstr "Het SMS-nummer is verwijderd." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 @@ -5612,16 +5592,17 @@ msgstr "U bent al lid van deze groep" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" -msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." +msgstr "" +"Het was niet mogelijk om de gebruiker %1$s toe te voegen aan de groep %2$s" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "De gebruiker %s kon niet uit de groep %s verwijderd worden" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Het was niet mogelijk gebruiker %1$s uit de group %2$s te verwijderen." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 @@ -5661,7 +5642,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:472 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" "Het bericht te is lang. De maximale lengte is %1$d tekens. De lengte van uw " diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 00534aea67..2df7238a6c 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:28+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:27+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 (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5656,7 +5656,7 @@ msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Kunne ikkje fjerne %s fra %s gruppa " #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index b4a417360b..4aeae1113e 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:34+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:35+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ 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 (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -840,7 +840,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "Nie" @@ -859,7 +858,6 @@ msgstr "Nie blokuj tego użytkownika" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Tak" @@ -1359,7 +1357,6 @@ msgstr "Obecnie potwierdzone adresy e-mail." #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "Usuń" @@ -1379,7 +1376,6 @@ msgstr "" #. TRANS: Button label #: actions/emailsettings.php:127 actions/imsettings.php:131 #: actions/smssettings.php:137 lib/applicationeditform.php:357 -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Anuluj" @@ -1394,7 +1390,6 @@ msgstr "Adres e-mail, taki jak \"NazwaUżytkownika@example.org\"" #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Dodaj" @@ -1420,16 +1415,14 @@ msgstr "Używaj nowego adresu e-mail do wysyłania; anuluj poprzedni." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" -msgstr "Nowe" +msgstr "Nowy" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Preferencje" +msgstr "Preferencje e-mail" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1468,9 +1461,8 @@ msgstr "Opublikuj MicroID adresu e-mail." #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "Zapisano preferencje wyglądu." +msgstr "Zapisano preferencje e-mail." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1526,15 +1518,13 @@ msgstr "Brak oczekujących potwierdzeń do anulowania." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "To jest błędny adres komunikatora." +msgstr "To jest błędny adres e-mail." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Anulowano potwierdzenie." +msgstr "Anulowano potwierdzenie e-mail." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1544,9 +1534,8 @@ msgstr "To nie jest twój adres e-mail." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "Adres został usunięty." +msgstr "Adres e-mail został usunięty." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -2002,9 +1991,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Preferencje" +msgstr "Preferencje komunikatora" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2075,15 +2063,13 @@ msgstr "To jest błędny adres komunikatora." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "Nie można usunąć potwierdzenia adresu e-mail." +msgstr "Nie można usunąć potwierdzenia komunikatora." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Anulowano potwierdzenie." +msgstr "Anulowano potwierdzenie komunikatora." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2093,9 +2079,8 @@ msgstr "To nie jest twój identyfikator Jabbera." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "Adres został usunięty." +msgstr "Adres komunikatora został usunięty." #: actions/inbox.php:59 #, php-format @@ -4074,9 +4059,8 @@ msgstr "Wiadomości SMS nie są dostępne." #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "Adres komunikatora" +msgstr "Adres SMS" #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 @@ -4100,7 +4084,6 @@ msgstr "Podaj kod, który otrzymałeś na telefonie." #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" msgstr "Potwierdź" @@ -4117,9 +4100,8 @@ msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "Preferencje" +msgstr "Preferencje SMS" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4132,9 +4114,8 @@ msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "Zapisano preferencje." +msgstr "Zapisano preferencje SMS." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 @@ -4172,9 +4153,8 @@ msgstr "To jest błędny numer potwierdzenia." #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 -#, fuzzy msgid "SMS confirmation cancelled." -msgstr "Anulowano potwierdzenie." +msgstr "Anulowano potwierdzenie SMS." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -4184,9 +4164,8 @@ msgstr "To nie jest twój numer telefonu." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "Numer telefonu SMS" +msgstr "Numer telefonu SMS został usunięty." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 @@ -4238,7 +4217,6 @@ msgid "Invalid snapshot report URL." msgstr "Nieprawidłowy adres URL zgłaszania migawek." #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" msgstr "Losowo podczas trafienia WWW" @@ -4829,7 +4807,7 @@ msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s" @@ -5423,25 +5401,22 @@ msgstr "Anuluj" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" -msgstr "Odczyt i zapis" +msgstr "odczyt i zapis" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" -msgstr "Tylko do odczytu" +msgstr "tylko do odczytu" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Zaakceptowano %1$s - dostęp \"%2$s\"." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Unieważnij" @@ -5548,7 +5523,7 @@ msgstr "Jesteś już członkiem tej grupy." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." @@ -5556,7 +5531,7 @@ msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Nie można usunąć użytkownika %1$s z grupy %2$s." #. TRANS: Whois output. %s is the full name of the queried user. @@ -5597,9 +5572,9 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:472 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d" -msgstr "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." +msgstr "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 8d95f07c83..8318da1ba5 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:37+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:38+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5642,16 +5642,16 @@ msgstr "Já é membro desse grupo" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" -msgstr "Não foi possível adicionar %1$s ao grupo %2$s." +msgstr "Não foi possível juntar o utilizador %1$s ao grupo %2$s" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Não foi possível remover o utilizador %s do grupo %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Não foi possível remover %1$s do grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index ee53b83465..b506f7f297 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:40+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:42+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 (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5587,7 +5587,7 @@ msgstr "Você já é um membro desse grupo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." @@ -5595,8 +5595,8 @@ msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Não foi possível remover o usuário %s do grupo %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Não foi possível remover o usuário %1$s do grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 64a9934d1c..87e7ea8fb2 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-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:43+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:46+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -845,7 +845,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "Нет" @@ -864,7 +863,6 @@ msgstr "Не блокировать этого пользователя" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1367,10 +1365,9 @@ msgstr "Подтверждённый в настоящее время элект #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" -msgstr "Убрать" +msgstr "Удалить" #: actions/emailsettings.php:122 msgid "" @@ -1386,10 +1383,9 @@ msgstr "" #. TRANS: Button label #: actions/emailsettings.php:127 actions/imsettings.php:131 #: actions/smssettings.php:137 lib/applicationeditform.php:357 -#, fuzzy msgctxt "BUTTON" msgid "Cancel" -msgstr "Отменить" +msgstr "Отмена" #. TRANS: Instructions for e-mail address input form. #: actions/emailsettings.php:135 @@ -1401,7 +1397,6 @@ msgstr "Электронный адрес вида \"UserName@example.org\"" #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Добавить" @@ -1430,16 +1425,14 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "Новый" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Предпочтения" +msgstr "Настройки эл. почты" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1485,9 +1478,8 @@ msgstr "Опубликовать MicroID для моего электронно #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "Настройки оформления сохранены." +msgstr "Настройки эл. почты сохранены." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1543,15 +1535,13 @@ msgstr "Нет подтверждения отказа." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "Это неверный IM-адрес." +msgstr "Это неверный адрес эл. почты." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Подтверждение отменено." +msgstr "Подтверждение эл. почты отменено." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1561,9 +1551,8 @@ msgstr "Это не Ваш электронный адрес." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "Адрес удалён." +msgstr "Адрес эл. почты удалён." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -2024,9 +2013,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Предпочтения" +msgstr "Настройки IM" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2097,15 +2085,13 @@ msgstr "Это неверный IM-адрес." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "Не удаётся удалить подверждение по электронному адресу." +msgstr "Не удаётся удалить подверждение IM." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Подтверждение отменено." +msgstr "Подтверждение IM отменено." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2115,9 +2101,8 @@ msgstr "Это не Ваш Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "Адрес удалён." +msgstr "Адрес IM удалён." #: actions/inbox.php:59 #, php-format @@ -4094,9 +4079,8 @@ msgstr "Отправка СМС недоступна." #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "IM-адрес" +msgstr "SMS-адрес" #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 @@ -4121,10 +4105,9 @@ msgstr "Введите код, который вы получили по тел #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" -msgstr "Подтверждение" +msgstr "Подтвердить" #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 @@ -4138,9 +4121,8 @@ msgstr "Номер телефона, без пробелов, с кодом зо #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "Предпочтения" +msgstr "Настройки SMS" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4153,9 +4135,8 @@ msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "Предпочтения сохранены." +msgstr "Настройки SMS сохранены." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 @@ -4193,9 +4174,8 @@ msgstr "Это неверный номер подтверждения." #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 -#, fuzzy msgid "SMS confirmation cancelled." -msgstr "Подтверждение отменено." +msgstr "Подтверждение SMS отменено." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -4205,9 +4185,8 @@ msgstr "Это не Ваш номер телефона." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "Номер телефона для СМС" +msgstr "Номер SMS телефона удалён." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 @@ -4259,9 +4238,8 @@ msgid "Invalid snapshot report URL." msgstr "Неверный URL отчёта снимка." #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" -msgstr "При случайном посещении" +msgstr "При случайном веб-обращении" #: actions/snapshotadminpanel.php:201 msgid "In a scheduled job" @@ -4847,9 +4825,9 @@ msgstr "Не удаётся обновить сообщение с новым UR #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" -msgstr "Ошибка баз данных при вставке хеш-тегов для %s" +msgstr "Ошибка баз данных при вставке хеш-тегов: %s" #: classes/Notice.php:245 msgid "Problem saving notice. Too long." @@ -5439,25 +5417,22 @@ msgstr "Отменить" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" -msgstr "Чтение и запись" +msgstr "чтение/запись" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" -msgstr "Только чтение" +msgstr "только чтение" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Подтверждён доступ %1$s — «%2$s»." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Отозвать" @@ -5564,7 +5539,7 @@ msgstr "Вы уже являетесь членом этой группы." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." @@ -5572,7 +5547,7 @@ msgstr "Не удаётся присоединить пользователя %1 #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Не удаётся удалить пользователя %1$s из группы %2$s." #. TRANS: Whois output. %s is the full name of the queried user. @@ -5613,10 +5588,11 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:472 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -"Сообщение слишком длинное — не больше %1$d символов, вы отправили %2$d." +"Сообщение слишком велико. Предельно допустимая длина составляет %1$d " +"символов, вы отправили %2$d." #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. diff --git a/locale/statusnet.pot b/locale/statusnet.pot index c7ecc89f08..12fa2d986f 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5238,7 +5238,7 @@ msgstr "" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 91bf80f89c..1e6065dc53 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:46+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:49+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -831,7 +831,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "Nej" @@ -850,7 +849,6 @@ msgstr "Blockera inte denna användare" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1354,7 +1352,6 @@ msgstr "Aktuell, bekräftad e-postadress." #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "Ta bort" @@ -1387,7 +1384,6 @@ msgstr "E-postadress, såsom \"användarnamn@example.org\"" #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Lägg till" @@ -1414,16 +1410,14 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "Ny" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Inställningar" +msgstr "E-postinställningar" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1462,9 +1456,8 @@ msgstr "Publicera ett MicroID för min e-postadress." #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "Utseendeinställningar sparade." +msgstr "E-postinställningar sparade." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1520,15 +1513,13 @@ msgstr "Ingen väntande bekräftelse att avbryta." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "Detta är fel IM-adress." +msgstr "Detta är fel e-postadress." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Bekräftelse avbruten." +msgstr "E-postbekräftelse avbruten." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1538,9 +1529,8 @@ msgstr "Det är inte din e-postadress." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "Adressen togs bort." +msgstr "E-postadressen togs bort." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -1999,9 +1989,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Inställningar" +msgstr "Inställningar för snabbmeddelanden" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2073,15 +2062,13 @@ msgstr "Detta är fel IM-adress." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "Kunde inte ta bort e-postbekräftelse." +msgstr "Kunde inte ta bort bekräftelse för snabbmeddelanden." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Bekräftelse avbruten." +msgstr "Bekräftelse för snabbmeddelanden avbruten." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2091,9 +2078,8 @@ msgstr "Detta är inte ditt Jabber-ID." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "Adressen togs bort." +msgstr "Adressen för snabbmeddelanden togs bort." #: actions/inbox.php:59 #, php-format @@ -4070,9 +4056,8 @@ msgstr "SMS är inte tillgängligt." #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "Adress för snabbmeddelanden" +msgstr "SMS-adress" #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 @@ -4096,7 +4081,6 @@ msgstr "Fyll i koden du mottog i din telefon." #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" msgstr "Bekräfta" @@ -4113,9 +4097,8 @@ msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "Inställningar" +msgstr "SMS-inställningar" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4128,9 +4111,8 @@ msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "Inställningar sparade." +msgstr "SMS-inställningar sparade." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 @@ -4168,9 +4150,8 @@ msgstr "Detta är fel bekräftelsenummer." #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 -#, fuzzy msgid "SMS confirmation cancelled." -msgstr "Bekräftelse avbruten." +msgstr "SMS-bekräftelse avbruten." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -4180,9 +4161,8 @@ msgstr "Detta är inte ditt telefonnummer." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "Telefonnummer för SMS" +msgstr "Telefonnummer för SMS togs bort." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 @@ -5532,7 +5512,7 @@ msgstr "Du är redan en medlem i denna grupp" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." @@ -5540,8 +5520,8 @@ msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Kunde inte ta bort användare %s från grupp %s" +msgid "Could not remove user %1$s from group %2$s" +msgstr "Kunde inte ta bort användare %1$s från grupp %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 @@ -5581,9 +5561,9 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:472 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d" -msgstr "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d." +msgstr "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index bf599e41bc..b591d2fc01 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:49+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:52+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -846,7 +846,6 @@ msgstr "ఈ వాడుకరిని నిరోధించకు" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "అవును" @@ -1408,16 +1407,14 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "కొత్తది" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "అభిరుచులు" +msgstr "ఈమెయిలు అభిరుచులు" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1456,9 +1453,8 @@ msgstr "" #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "అభిరుచులు భద్రమయ్యాయి." +msgstr "ఈమెయిలు అభిరుచులు భద్రమయ్యాయి." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1511,15 +1507,13 @@ msgstr "రద్దుచేయడానికి వేచివున్న #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "ఆ IM చిరునామా సరైనది కాదు." +msgstr "ఆ ఈమెయిలు చిరునామా సరైనది కాదు." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "నిర్ధారణ రద్దయింది." +msgstr "ఈమెయిలు నిర్ధారణ రద్దయింది." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1529,9 +1523,8 @@ msgstr "అది మీ ఈమెయిలు చిరునామా కా #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "ఆ చిరునామాని తొలగించాం." +msgstr "ఆ ఈమెయిలు చిరునామాని తొలగించాం." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -1708,7 +1701,7 @@ msgstr "" #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." -msgstr "" +msgstr "గుంపు ఏమీ పేర్కొనలేదు." #: actions/groupblock.php:91 msgid "Only an admin can block group members." @@ -1975,9 +1968,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "అభిరుచులు" +msgstr "IM అభిరుచులు" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2293,9 +2285,8 @@ msgid "Can't make %1$s an admin for group %2$s." msgstr "%1$sని %2$s గుంపు యొక్క నిర్వాహకున్ని చేయలేకపోయాం." #: actions/microsummary.php:69 -#, fuzzy msgid "No current status." -msgstr "ప్రస్తుత స్థితి ఏమీ లేదు" +msgstr "ప్రస్తుత స్థితి ఏమీ లేదు." #: actions/newapplication.php:52 msgid "New Application" @@ -2314,9 +2305,8 @@ msgid "Source URL is required." msgstr "" #: actions/newapplication.php:258 actions/newapplication.php:267 -#, fuzzy msgid "Could not create application." -msgstr "మారుపేర్లని సృష్టించలేకపోయాం." +msgstr "ఉపకరణాన్ని సృష్టించలేకపోయాం." #: actions/newgroup.php:53 msgid "New group" @@ -2384,7 +2374,7 @@ msgid "Text search" msgstr "పాఠ్య అన్వేషణ" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" msgstr "%2$sలో \"%1$s\"కై అన్వేషణ ఫలితాలు" @@ -3993,7 +3983,6 @@ msgstr "" #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" msgstr "నిర్థారించు" @@ -4010,9 +3999,8 @@ msgstr "" #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "అభిరుచులు" +msgstr "SMS అభిరుచులు" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4185,9 +4173,8 @@ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" #: actions/subscribe.php:145 -#, fuzzy msgid "Subscribed" -msgstr "చందాదార్లు" +msgstr "చందాచేరారు" #: actions/subscribers.php:50 #, php-format @@ -5412,7 +5399,7 @@ msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" @@ -5420,8 +5407,8 @@ msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్ #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం" +msgid "Could not remove user %1$s from group %2$s" +msgstr "వాడుకరి %1$sని %2$s గుంపు నుండి తొలగించలేకపోయాం." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 @@ -5490,9 +5477,8 @@ msgid "Notice from %s repeated" msgstr "సందేశాలు" #: lib/command.php:531 -#, fuzzy msgid "Error repeating notice." -msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +msgstr "నోటీసుని పునరావృతించడంలో పొరపాటు." #: lib/command.php:562 #, php-format @@ -5500,14 +5486,13 @@ msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు" #: lib/command.php:571 -#, fuzzy, php-format +#, php-format msgid "Reply to %s sent" -msgstr "%sకి స్పందనలు" +msgstr "%sకి స్పందనని పంపించాం" #: lib/command.php:573 -#, fuzzy msgid "Error saving notice." -msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు." #: lib/command.php:620 msgid "Specify the name of the user to subscribe to" @@ -5916,6 +5901,18 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"హోయి, %s.\n" +"\n" +"%sలో ఎవరో మీ ఈమెయిలు చిరునామాని ఇచ్చారు.\n" +"\n" +"అది మీరే అయితే, మరియు మీ పద్దుని మీరు నిర్ధారించాలనుకుంటే, క్రింది చిరునామాపై నొక్కండి:\n" +"\n" +"%s\n" +"\n" +"మీరు కాకపోతే, ఈ సందేశాన్ని పట్టించుకోకండి.\n" +"\n" +"మీ సమయానికి కృతజ్ఞతలు, \n" +"%s\n" #. TRANS: Subject of new-subscriber notification e-mail #: lib/mail.php:243 @@ -5959,7 +5956,7 @@ msgstr "స్వపరిచయం: %s" #: lib/mail.php:298 #, php-format msgid "New email address for posting to %s" -msgstr "" +msgstr "%sకి నోటీసులు పంపించడానికి కొత్త ఈమెయిలు చిరునామా" #. TRANS: Body of notification mail for new posting email address #: lib/mail.php:302 @@ -6059,7 +6056,7 @@ msgstr "" #: lib/mail.php:583 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "" +msgstr "%s (@%s) మీ నోటీసుని ఇష్టపడ్డారు" #. TRANS: Body for favorite notification email #: lib/mail.php:586 @@ -6082,6 +6079,22 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" +"%2$s లోని మీ నోటీసుని %1$s (@%7$s) తన ఇష్టాంశాలలో ఇప్పుడే చేర్చుకున్నారు.\n" +"\n" +"మీ నోటీసు యొక్క చిరునామా ఇదీ:\n" +"\n" +"%3$s\n" +"\n" +"మీ నోటీసు యొక్క పాఠ్యం ఇదీ:\n" +"\n" +"%4$s\n" +"\n" +"%1$s యొక్క ఇష్టాంశాల జాబితాని మీరు ఇక్కడ చూడవచ్చు:\n" +"\n" +"%5$s\n" +"\n" +"మీ విధేయులు,\n" +"%6$s\n" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #: lib/mail.php:645 @@ -6091,6 +6104,9 @@ msgid "" "\n" "\t%s" msgstr "" +"పూర్తి సంభాషణని ఇక్కడ చదవవచ్చు:\n" +"\n" +"%s" #: lib/mail.php:651 #, php-format @@ -6124,6 +6140,28 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%2$sలో %1$s (@%9$s) ఒక నోటీసుని మీ దృష్టికి ('@-స్పందన') పంపించారు.\n" +"\n" +"ఈదీ నోటీసు:\n" +"\n" +"%3$s\n" +"\n" +"నోటీసు పాఠ్యం:\n" +"\n" +"%4$s\n" +"\n" +"%5$sమీరు ఇక్కడ ప్రతిస్పందించవచ్చు:\n" +"\n" +"%6$s\n" +"\n" +"మీకు వచ్చిన అన్ని @-స్పందనలని ఇక్కడ చూడవచ్చు:\n" +"\n" +"%7$s\n" +"\n" +"మీ విధేయులు,\n" +"%2$s\n" +"\n" +"తా.క. ఈ ఈమెయిలు గమనింపులని మీరు ఇక్కడ నిలిపివేసుకోవచ్చు: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index e5b1c00fff..3fe578e086 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:52+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:55+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5569,7 +5569,7 @@ msgstr "Sunucuya yönlendirme yapılamadı: %s" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "OpenID formu yaratılamadı: %s" #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index f9b74e02d5..de2f4e803b 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -11,12 +11,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:55+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:49:58+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -842,7 +842,6 @@ msgstr "" #: actions/block.php:145 actions/deleteapplication.php:154 #: actions/deletenotice.php:147 actions/deleteuser.php:152 #: actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "Ні" @@ -861,7 +860,6 @@ msgstr "Не блокувати цього користувача" #: actions/block.php:152 actions/deleteapplication.php:161 #: actions/deletenotice.php:154 actions/deleteuser.php:159 #: actions/groupblock.php:185 -#, fuzzy msgctxt "BUTTON" msgid "Yes" msgstr "Так" @@ -1362,7 +1360,6 @@ msgstr "Поточна підтверджена поштова адреса." #: actions/emailsettings.php:115 actions/emailsettings.php:158 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "Видалити" @@ -1381,7 +1378,6 @@ msgstr "" #. TRANS: Button label #: actions/emailsettings.php:127 actions/imsettings.php:131 #: actions/smssettings.php:137 lib/applicationeditform.php:357 -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Скасувати" @@ -1396,7 +1392,6 @@ msgstr "Електронна адреса, на зразок \"UserName@example. #. TRANS: Button label for adding a SMS phone number in SMS settings form. #: actions/emailsettings.php:139 actions/imsettings.php:148 #: actions/smssettings.php:162 -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Додати" @@ -1422,16 +1417,14 @@ msgstr "Створити нову адресу для надсилання по #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:168 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "Нове" #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:174 -#, fuzzy msgid "Email preferences" -msgstr "Преференції" +msgstr "Преференції ел. пошти" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:180 @@ -1470,9 +1463,8 @@ msgstr "Позначати міткою MicroID мою електронну ад #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:334 -#, fuzzy msgid "Email preferences saved." -msgstr "Преференції дизайну збережно." +msgstr "Преференції пошти збережно." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:353 @@ -1528,15 +1520,13 @@ msgstr "Не очікується підтвердження для скасув #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:424 -#, fuzzy msgid "That is the wrong email address." -msgstr "Це помилкова адреса IM." +msgstr "Це помилкова адреса електронної пошти." #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:438 -#, fuzzy msgid "Email confirmation cancelled." -msgstr "Підтвердження скасовано." +msgstr "Підтвердження електронної пошти скасовано." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -1546,9 +1536,8 @@ msgstr "Це не є Вашою адресою." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:479 -#, fuzzy msgid "The email address was removed." -msgstr "Адресу було видалено." +msgstr "Адреса була видалена." #: actions/emailsettings.php:493 actions/smssettings.php:568 msgid "No incoming email address." @@ -2008,9 +1997,8 @@ msgstr "" #. TRANS: Form legend for IM preferences form. #: actions/imsettings.php:155 -#, fuzzy msgid "IM preferences" -msgstr "Преференції" +msgstr "Преференції ІМ" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:160 @@ -2082,15 +2070,13 @@ msgstr "Це помилкова адреса IM." #. TRANS: Server error thrown on database error canceling IM address confirmation. #: actions/imsettings.php:397 -#, fuzzy msgid "Couldn't delete IM confirmation." -msgstr "Не вдалося видалити підтвердження поштової адреси." +msgstr "Не вдалося видалити підтвердження ІМ." #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:402 -#, fuzzy msgid "IM confirmation cancelled." -msgstr "Підтвердження скасовано." +msgstr "Підтвердження ІМ скасовано." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2100,9 +2086,8 @@ msgstr "Це не Ваш Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:447 -#, fuzzy msgid "The IM address was removed." -msgstr "Адресу було видалено." +msgstr "Адреса ІМ була видалена." #: actions/inbox.php:59 #, php-format @@ -4082,9 +4067,8 @@ msgstr "СМС недоступно." #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "ІМ-адреса" +msgstr "SMS-адреса" #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 @@ -4108,7 +4092,6 @@ msgstr "Введіть код, який Ви отримали телефоном #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" msgstr "Підтвердити" @@ -4125,9 +4108,8 @@ msgstr "Телефонний номер та регіональний код, н #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 -#, fuzzy msgid "SMS preferences" -msgstr "Преференції" +msgstr "Преференції SMS" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4140,9 +4122,8 @@ msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "Преференції збережно." +msgstr "Преференції SMS збережено." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 @@ -4180,9 +4161,8 @@ msgstr "Це помилковий код підтвердження." #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 -#, fuzzy msgid "SMS confirmation cancelled." -msgstr "Підтвердження скасовано." +msgstr "Підтвердження SMS скасовано." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -4192,9 +4172,8 @@ msgstr "Це не Ваш телефонний номер." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "Телефонний номер" +msgstr "Телефонний номер для SMS був видалений." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 @@ -4246,9 +4225,8 @@ msgid "Invalid snapshot report URL." msgstr "Помилковий снепшот URL." #: actions/snapshotadminpanel.php:200 -#, fuzzy msgid "Randomly during web hit" -msgstr "Випадково під час веб-хіта" +msgstr "Випадково під час веб-звернення" #: actions/snapshotadminpanel.php:201 msgid "In a scheduled job" @@ -4832,9 +4810,9 @@ msgstr "Не можна оновити повідомлення з новим UR #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:176 -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s" -msgstr "Помилка бази даних при додаванні теґу: %s" +msgstr "Помилка бази даних при додаванні хеш-теґу: %s" #: classes/Notice.php:245 msgid "Problem saving notice. Too long." @@ -5422,25 +5400,22 @@ msgstr "Скасувати" #. TRANS: Application access type #: lib/applicationlist.php:136 -#, fuzzy msgid "read-write" -msgstr "Читати-писати" +msgstr "читання/запис" #. TRANS: Application access type #: lib/applicationlist.php:138 -#, fuzzy msgid "read-only" -msgstr "Лише читання" +msgstr "лише читання" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:144 #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Підтверджено доступ %1$s — «%2$s»." #. TRANS: Button label #: lib/applicationlist.php:159 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Відкликати" @@ -5547,7 +5522,7 @@ msgstr "Ви вже є учасником цієї групи." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:339 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s" msgstr "Не вдалось долучити користувача %1$s до групи %2$s." @@ -5555,8 +5530,8 @@ msgstr "Не вдалось долучити користувача %1$s до г #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" -msgstr "Не вдалося видалити користувача %1$s з групи %2$s." +msgid "Could not remove user %1$s from group %2$s" +msgstr "Не вдалось видалити користувача %1$s з групи %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:418 @@ -5596,10 +5571,11 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:472 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d" msgstr "" -"Повідомлення надто довге — максимум %1$d символів, а Ви надсилаєте %2$d." +"Повідомлення надто довге — максимум становить %1$d символів, Ви надсилаєте %2" +"$d" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 8418945036..9f6fd0b166 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:44:58+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:50:02+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5732,7 +5732,7 @@ msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè c #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index d9b20ac14b..cd34a34998 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:45:01+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:50:08+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 (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5658,7 +5658,7 @@ msgstr "无法把 %s 用户添加到 %s 组" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "无法订阅用户:未找到。" #. TRANS: Whois output. %s is the full name of the queried user. diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 3747c71737..5d8a1c3810 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-11 21:42+0000\n" -"PO-Revision-Date: 2010-04-11 21:45:05+0000\n" +"POT-Creation-Date: 2010-04-12 21:47+0000\n" +"PO-Revision-Date: 2010-04-12 21:50:12+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 (r64948); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r64984); 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" @@ -5461,7 +5461,7 @@ msgstr "無法連結到伺服器:%s" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:385 #, fuzzy, php-format -msgid "Could not remove user %s from group %s" +msgid "Could not remove user %1$s from group %2$s" msgstr "無法從 %s 建立OpenID" #. TRANS: Whois output. %s is the full name of the queried user. From d445b977fc63a4a97b91dd7fc047029115ffaf18 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 14 Apr 2010 11:09:54 +0200 Subject: [PATCH 74/80] move comment to correct place --- classes/Notice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Notice.php b/classes/Notice.php index b416e2ff28..b0ead3c420 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -148,11 +148,11 @@ class Notice extends Memcached_DataObject //turn each into their canonical tag //this is needed to remove dupes before saving e.g. #hash.tag = #hashtag for($i=0; $isaveTag($hashtag); self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag); } From a21a17263956808e074fb62551300c5d6297387b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 14 Apr 2010 11:11:02 +0200 Subject: [PATCH 75/80] Fix for "#foo !foo" in same notice failing during save, causing failout before distribution. Move saveGroups after saveTags when saving notices; groups may save additional tags, so need to be moved after so the check for duplicates actually works. --- classes/Notice.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index b0ead3c420..a8147e4c4d 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -373,18 +373,20 @@ class Notice extends Memcached_DataObject $notice->saveReplies(); } - if (isset($groups)) { - $notice->saveKnownGroups($groups); - } else { - $notice->saveGroups(); - } - if (isset($tags)) { $notice->saveKnownTags($tags); } else { $notice->saveTags(); } + // Note: groups may save tags, so must be run after tags are saved + // to avoid errors on duplicates. + if (isset($groups)) { + $notice->saveKnownGroups($groups); + } else { + $notice->saveGroups(); + } + if (isset($urls)) { $notice->saveKnownUrls($urls); } else { From efcdfabc1225a2fdcb37a6cc3c96982b24b88d8f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 14 Apr 2010 15:45:00 +0200 Subject: [PATCH 76/80] Ticket #2205: pass geo locations over Twitter bridge (will only be used if enabled on the Twitter side) --- plugins/TwitterBridge/twitter.php | 26 +++++++++++++++++-- .../TwitterBridge/twitterbasicauthclient.php | 15 ++++++----- plugins/TwitterBridge/twitteroauthclient.php | 17 +++++++----- 3 files changed, 44 insertions(+), 14 deletions(-) diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 2805b3ab56..21adc7a908 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -124,15 +124,36 @@ function broadcast_twitter($notice) return true; } +/** + * Pull any extra information from a notice that we should transfer over + * to Twitter beyond the notice text itself. + * + * @param Notice $notice + * @return array of key-value pairs for Twitter update submission + * @access private + */ +function twitter_update_params($notice) +{ + $params = array(); + if ($notice->lat || $notice->lon) { + $params['lat'] = $notice->lat; + $params['long'] = $notice->lon; + } + return $params; +} + + function broadcast_oauth($notice, $flink) { $user = $flink->getUser(); $statustxt = format_status($notice); + $params = twitter_update_params($notice); + $token = TwitterOAuthClient::unpackToken($flink->credentials); $client = new TwitterOAuthClient($token->key, $token->secret); $status = null; try { - $status = $client->statusesUpdate($statustxt); + $status = $client->statusesUpdate($statustxt, $params); } catch (OAuthClientException $e) { return process_error($e, $flink, $notice); } @@ -171,12 +192,13 @@ function broadcast_basicauth($notice, $flink) $user = $flink->getUser(); $statustxt = format_status($notice); + $params = twitter_update_params($notice); $client = new TwitterBasicAuthClient($flink); $status = null; try { - $status = $client->statusesUpdate($statustxt); + $status = $client->statusesUpdate($statustxt, $params); } catch (BasicAuthException $e) { return process_error($e, $flink, $notice); } diff --git a/plugins/TwitterBridge/twitterbasicauthclient.php b/plugins/TwitterBridge/twitterbasicauthclient.php index fd26293f9e..2c18c94695 100644 --- a/plugins/TwitterBridge/twitterbasicauthclient.php +++ b/plugins/TwitterBridge/twitterbasicauthclient.php @@ -76,18 +76,21 @@ class TwitterBasicAuthClient /** * Calls Twitter's /statuses/update API method * - * @param string $status text of the status - * @param int $in_reply_to_status_id optional id of the status it's - * a reply to + * @param string $status text of the status + * @param mixed $params optional other parameters to pass to Twitter, + * as defined. For back-compatibility, if an int + * is passed we'll consider it a reply-to ID. * * @return mixed the status */ function statusesUpdate($status, $in_reply_to_status_id = null) { $url = 'https://twitter.com/statuses/update.json'; - $params = array('status' => $status, - 'source' => common_config('integration', 'source'), - 'in_reply_to_status_id' => $in_reply_to_status_id); + if (is_numeric($params)) { + $params = array('in_reply_to_status_id' => intval($params)); + } + $params['status'] = $status; + $params['source'] = common_config('integration', 'source'); $response = $this->httpRequest($url, $params); $status = json_decode($response); return $status; diff --git a/plugins/TwitterBridge/twitteroauthclient.php b/plugins/TwitterBridge/twitteroauthclient.php index 93f6aadd1e..d895d8c73c 100644 --- a/plugins/TwitterBridge/twitteroauthclient.php +++ b/plugins/TwitterBridge/twitteroauthclient.php @@ -166,17 +166,22 @@ class TwitterOAuthClient extends OAuthClient /** * Calls Twitter's /statuses/update API method * - * @param string $status text of the status - * @param int $in_reply_to_status_id optional id of the status it's - * a reply to + * @param string $status text of the status + * @param mixed $params optional other parameters to pass to Twitter, + * as defined. For back-compatibility, if an int + * is passed we'll consider it a reply-to ID. * * @return mixed the status */ - function statusesUpdate($status, $in_reply_to_status_id = null) + function statusesUpdate($status, $params=array()) { $url = 'https://twitter.com/statuses/update.json'; - $params = array('status' => $status, - 'in_reply_to_status_id' => $in_reply_to_status_id); + if (is_numeric($params)) { + $params = array('in_reply_to_status_id' => intval($params)); + } + $params['status'] = $status; + // We don't have to pass 'source' as the oauth key is tied to an app. + $response = $this->oAuthPost($url, $params); $status = json_decode($response); return $status; From 1081b06bbe10ee5457bd5c53df4561f512c78ded Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 15 Apr 2010 12:52:59 -0400 Subject: [PATCH 77/80] Allow cross-site ajax with CORS. Only allows un-credentialed (as in, no cookies or basic auth), no custom headers, and get (no post, put, delete, etc) requests. --- lib/apiaction.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/apiaction.php b/lib/apiaction.php index 5245c7ef60..d5580abd3a 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -102,6 +102,7 @@ class ApiAction extends Action function handle($args) { + header('Access-Control-Allow-Origin: *'); parent::handle($args); } From 4f0672a94c0f0d63aba948f1f0ca678a088b8353 Mon Sep 17 00:00:00 2001 From: Christopher Vollick Date: Thu, 15 Apr 2010 12:43:54 -0400 Subject: [PATCH 78/80] Allow setconfig.php to Print Entire Config Previously it only printed out the configuration in the DB. Now it can also print out the entire current configuration. --- scripts/setconfig.php | 36 ++++++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/scripts/setconfig.php b/scripts/setconfig.php index fe0e46d65e..401dda0f2b 100755 --- a/scripts/setconfig.php +++ b/scripts/setconfig.php @@ -20,8 +20,8 @@ define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); -$shortoptions = 'd'; -$longoptions = array('delete'); +$shortoptions = 'da'; +$longoptions = array('delete', 'all'); $helptext = << @@ -35,22 +35,34 @@ With no args, lists all currently set values. value to set (optional) -d --delete delete the setting (no value) + -a --all list all configuration, not just the database values END_OF_SETCONFIG_HELP; require_once INSTALLDIR.'/scripts/commandline.inc'; if (empty($args)) { - $count = 0; - $config = new Config(); - $config->find(); - while ($config->fetch()) { - $count++; - printf("%-20s %-20s %s\n", $config->section, $config->setting, - var_export($config->value, true)); - } - if ($count == 0) { - print "No configuration set in database for this site.\n"; + if (have_option('a', 'all')) { + foreach ($config as $section => $section_value) { + foreach ($section_value as $setting => $value) { + if (have_option('v', 'verbose') || !is_array($value)) { + # Don't print array's without the verbose flag + printf("%-20s %-20s %s\n", $section, $setting, var_export($value, true)); + } + } + } + } else { + $count = 0; + $config = new Config(); + $config->find(); + while ($config->fetch()) { + $count++; + printf("%-20s %-20s %s\n", $config->section, $config->setting, + var_export($config->value, true)); + } + if ($count == 0) { + print "No configuration set in database for this site.\n"; + } } exit(0); } From ffd688b8ef9103a6677f91056e2220c8e3edd665 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Sat, 17 Apr 2010 14:35:00 -0400 Subject: [PATCH 79/80] json_encode strings put out as javascript --- lib/noticeform.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/noticeform.php b/lib/noticeform.php index 7278c41a9c..84c20a5b3f 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -212,8 +212,8 @@ class NoticeForm extends Form $this->out->checkbox('notice_data-geo', _('Share my location'), true); $this->out->elementEnd('div'); $this->out->inlineScript(' var NoticeDataGeo_text = {'. - 'ShareDisable: "'._('Do not share my location').'",'. - 'ErrorTimeout: "'._('Sorry, retrieving your geo location is taking longer than expected, please try again later').'"'. + 'ShareDisable: ' .json_encode(_('Do not share my location')).','. + 'ErrorTimeout: ' .json_encode(_('Sorry, retrieving your geo location is taking longer than expected, please try again later')). '}'); } From 23bad16bba52a09f0cea3d2c40e6cf91e2945e37 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Sat, 17 Apr 2010 15:09:56 -0400 Subject: [PATCH 80/80] don't attempt to read a user's ldap password --- plugins/LdapAuthentication/LdapAuthenticationPlugin.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index 2e01738ec3..0dfc4c63be 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -96,7 +96,12 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin if($entry){ $registration_data = array(); foreach($this->attributes as $sn_attribute=>$ldap_attribute){ - $registration_data[$sn_attribute]=$entry->getValue($ldap_attribute,'single'); + //ldap won't let us read a user's password, + //and we're going to set the password to a random string later anyways, + //so don't bother trying to read it. + if($sn_attribute != 'password'){ + $registration_data[$sn_attribute]=$entry->getValue($ldap_attribute,'single'); + } } if(isset($registration_data['email']) && !empty($registration_data['email'])){ $registration_data['email_confirmed']=true;